Skip to content
This repository was archived by the owner on May 10, 2018. It is now read-only.

Commit 8b65dd3

Browse files
committed
chore(bower): bump version
1 parent 85d626a commit 8b65dd3

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "revolunet",
33
"name": "angular-rn-carousel",
44
"description": "Mobile friendly AngularJS carousel",
5-
"version": "0.1.1",
5+
"version": "0.1.3",
66
"homepage": "https://github.com/revolunet/angular-carousel",
77
"repository": {
88
"type": "git",

dist/angular-carousel.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Angular Carousel - Mobile friendly touch carousel for AngularJS
3-
* @version v0.0.9 - 2014-01-05
3+
* @version v0.1.3 - 2014-01-06
44
* @link http://revolunet.github.com/angular-carousel
55
* @author Julien Bouquillon <[email protected]>
66
* @license MIT License, http://www.opensource.org/licenses/MIT
@@ -202,7 +202,7 @@ angular.module('angular-carousel')
202202
if (isNaN(x)) {
203203
x = scope.carouselIndex * containerWidth;
204204
}
205-
205+
206206
offset = x;
207207
var move = -Math.round(offset);
208208
move += (scope.carouselBufferIndex * containerWidth);
@@ -309,6 +309,7 @@ angular.module('angular-carousel')
309309
event.stopPropagation();
310310
return false;
311311
}
312+
312313
function swipeMove(coords, event) {
313314
//console.log('swipeMove', coords, event);
314315
var x, delta;
@@ -326,7 +327,7 @@ angular.module('angular-carousel')
326327
event.stopPropagation();
327328
return false;
328329
}
329-
330+
330331
function swipeEnd(coords, event, forceAnimation) {
331332
//console.log('swipeEnd', 'scope.carouselIndex', scope.carouselIndex);
332333
$document.unbind('mouseup', documentMouseUpEvent);
@@ -380,9 +381,8 @@ angular.module('angular-carousel')
380381
});
381382

382383
function onOrientationChange() {
383-
alert('onOrientationChange');
384-
updateContainerWidth();
385-
goToSlide();
384+
updateContainerWidth();
385+
goToSlide();
386386
}
387387

388388
// handle orientation change

dist/angular-carousel.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-carousel",
33
"description": "Angular Carousel - Mobile friendly touch carousel for AngularJS",
4-
"version": "0.1.1",
4+
"version": "0.1.3",
55
"homepage": "http://revolunet.github.com/angular-carousel",
66
"author": "Julien Bouquillon <[email protected]>",
77
"repository": {

0 commit comments

Comments
 (0)