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

Commit

Permalink
bump release
Browse files Browse the repository at this point in the history
  • Loading branch information
revolunet committed Oct 20, 2014
1 parent 300ec23 commit 6393a02
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-carousel",
"description": "Angular Carousel - Mobile friendly touch carousel for AngularJS",
"version": "0.3.3",
"version": "0.3.4",
"homepage": "http://revolunet.github.com/angular-carousel",
"author": "Julien Bouquillon <[email protected]>",
"repository": {
Expand Down
11 changes: 6 additions & 5 deletions dist/angular-carousel.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Angular Carousel - Mobile friendly touch carousel for AngularJS
* @version v0.3.3 - 2014-10-19
* @version v0.3.4 - 2014-10-20
* @link http://revolunet.github.com/angular-carousel
* @author Julien Bouquillon <[email protected]>
* @license MIT License, http://www.opensource.org/licenses/MIT
Expand Down Expand Up @@ -616,7 +616,7 @@ angular.module('angular-carousel.shifty', [])

.factory('Tweenable', function() {

(function (root) {
(function (root, window) {
/*!
* Shifty Core
* By Jeremy Kahn - [email protected]
Expand Down Expand Up @@ -1068,7 +1068,8 @@ angular.module('angular-carousel.shifty', [])
return Tweenable;

} ());


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

} (Tweenable));

}(this));
}(this, window));

return this.Tweenable;
return window.Tweenable;
});

(function() {
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-carousel.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-carousel",
"description": "Angular Carousel - Mobile friendly touch carousel for AngularJS",
"version": "0.3.3",
"version": "0.3.4",
"homepage": "http://revolunet.github.com/angular-carousel",
"author": "Julien Bouquillon <[email protected]>",
"repository": {
Expand Down

0 comments on commit 6393a02

Please sign in to comment.