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

Commit 6393a02

Browse files
committedOct 20, 2014
bump release
1 parent 300ec23 commit 6393a02

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed
 

‎bower.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.3.3",
4+
"version": "0.3.4",
55
"homepage": "http://revolunet.github.com/angular-carousel",
66
"author": "Julien Bouquillon <julien@revolunet.com>",
77
"repository": {

‎dist/angular-carousel.js

+6-5
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.3.3 - 2014-10-19
3+
* @version v0.3.4 - 2014-10-20
44
* @link http://revolunet.github.com/angular-carousel
55
* @author Julien Bouquillon <julien@revolunet.com>
66
* @license MIT License, http://www.opensource.org/licenses/MIT
@@ -616,7 +616,7 @@ angular.module('angular-carousel.shifty', [])
616616

617617
.factory('Tweenable', function() {
618618

619-
(function (root) {
619+
(function (root, window) {
620620
/*!
621621
* Shifty Core
622622
* By Jeremy Kahn - jeremyckahn@gmail.com
@@ -1068,7 +1068,8 @@ angular.module('angular-carousel.shifty', [])
10681068
return Tweenable;
10691069

10701070
} ());
1071-
1071+
1072+
window.Tweenable = Tweenable;
10721073
/*!
10731074
* All equations are adapted from Thomas Fuchs' [Scripty2](https://github.com/madrobby/scripty2/blob/master/src/effects/transitions/penner.js).
10741075
*
@@ -1989,9 +1990,9 @@ angular.module('angular-carousel.shifty', [])
19891990

19901991
} (Tweenable));
19911992

1992-
}(this));
1993+
}(this, window));
19931994

1994-
return this.Tweenable;
1995+
return window.Tweenable;
19951996
});
19961997

19971998
(function() {

‎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.3.3",
4+
"version": "0.3.4",
55
"homepage": "http://revolunet.github.com/angular-carousel",
66
"author": "Julien Bouquillon <julien@revolunet.com>",
77
"repository": {

0 commit comments

Comments
 (0)