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

Commit 300ec23

Browse files
author
Julien Bouquillon
committed
Merge pull request #231 from jakeauyeung/master
fix return this.Tweenable is undefined
2 parents 6b50661 + ddfae39 commit 300ec23

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/directives/shifty.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ angular.module('angular-carousel.shifty', [])
44

55
.factory('Tweenable', function() {
66

7-
(function (root) {
7+
(function (root, window) {
88
/*!
99
* Shifty Core
1010
* By Jeremy Kahn - [email protected]
@@ -456,7 +456,8 @@ angular.module('angular-carousel.shifty', [])
456456
return Tweenable;
457457

458458
} ());
459-
459+
460+
window.Tweenable = Tweenable;
460461
/*!
461462
* All equations are adapted from Thomas Fuchs' [Scripty2](https://github.com/madrobby/scripty2/blob/master/src/effects/transitions/penner.js).
462463
*
@@ -1377,7 +1378,7 @@ angular.module('angular-carousel.shifty', [])
13771378

13781379
} (Tweenable));
13791380

1380-
}(this));
1381+
}(this, window));
13811382

1382-
return this.Tweenable;
1383+
return window.Tweenable;
13831384
});

0 commit comments

Comments
 (0)