Skip to content

Commit

Permalink
chore(all): prepare release 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jun 9, 2015
1 parent 9fb1ffa commit 1fc8fa2
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 18 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-animator-css",
"version": "0.3.1",
"version": "0.3.2",
"description": "An implementation of the abstract Animator interface from templating which enables css-based animations.",
"keywords": [
"aurelia",
Expand Down
10 changes: 6 additions & 4 deletions dist/amd/animator.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ define(['exports'], function (exports) {
this.animationEnteredClass = 'au-entered';
this.animationLeftClass = 'au-left';
this.isAnimating = false;

this.animationTimeout = 50;
}

CssAnimator.prototype.addMultipleEventListener = function addMultipleEventListener(el, s, fn) {
Expand Down Expand Up @@ -128,7 +130,7 @@ define(['exports'], function (exports) {

resolve(false);
}
}, _this.getElementAnimationDelay(element) + 400 + delay);
}, _this.getElementAnimationDelay(element) + _this.animationTimeout + delay);
});
};

Expand Down Expand Up @@ -197,7 +199,7 @@ define(['exports'], function (exports) {

resolve(false);
}
}, _this2.getElementAnimationDelay(element) + 400 + delay);
}, _this2.getElementAnimationDelay(element) + _this2.animationTimeout + delay);
});
};

Expand Down Expand Up @@ -250,7 +252,7 @@ define(['exports'], function (exports) {

resolve(false);
}
}, _this3.getElementAnimationDelay(element) + 400);
}, _this3.getElementAnimationDelay(element) + _this3.animationTimeout);
});
};

Expand Down Expand Up @@ -297,7 +299,7 @@ define(['exports'], function (exports) {

resolve(false);
}
}, _this4.getElementAnimationDelay(element) + 400);
}, _this4.getElementAnimationDelay(element) + _this4.animationTimeout);
});
};

Expand Down
10 changes: 6 additions & 4 deletions dist/commonjs/animator.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ var CssAnimator = (function () {
this.animationEnteredClass = 'au-entered';
this.animationLeftClass = 'au-left';
this.isAnimating = false;

this.animationTimeout = 50;
}

CssAnimator.prototype.addMultipleEventListener = function addMultipleEventListener(el, s, fn) {
Expand Down Expand Up @@ -127,7 +129,7 @@ var CssAnimator = (function () {

resolve(false);
}
}, _this.getElementAnimationDelay(element) + 400 + delay);
}, _this.getElementAnimationDelay(element) + _this.animationTimeout + delay);
});
};

Expand Down Expand Up @@ -196,7 +198,7 @@ var CssAnimator = (function () {

resolve(false);
}
}, _this2.getElementAnimationDelay(element) + 400 + delay);
}, _this2.getElementAnimationDelay(element) + _this2.animationTimeout + delay);
});
};

Expand Down Expand Up @@ -249,7 +251,7 @@ var CssAnimator = (function () {

resolve(false);
}
}, _this3.getElementAnimationDelay(element) + 400);
}, _this3.getElementAnimationDelay(element) + _this3.animationTimeout);
});
};

Expand Down Expand Up @@ -296,7 +298,7 @@ var CssAnimator = (function () {

resolve(false);
}
}, _this4.getElementAnimationDelay(element) + 400);
}, _this4.getElementAnimationDelay(element) + _this4.animationTimeout);
});
};

Expand Down
10 changes: 6 additions & 4 deletions dist/es6/animator.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export class CssAnimator {
this.animationEnteredClass = 'au-entered';
this.animationLeftClass = 'au-left';
this.isAnimating = false;

this.animationTimeout = 50;
}

addMultipleEventListener(el, s, fn) {
Expand Down Expand Up @@ -137,7 +139,7 @@ export class CssAnimator {

resolve(false);
}
}, this.getElementAnimationDelay(element) + 400 + delay);
}, this.getElementAnimationDelay(element) + this.animationTimeout + delay);
});
}

Expand Down Expand Up @@ -223,7 +225,7 @@ export class CssAnimator {

resolve(false);
}
}, this.getElementAnimationDelay(element) + 400 + delay);
}, this.getElementAnimationDelay(element) + this.animationTimeout + delay);
});
}

Expand Down Expand Up @@ -287,7 +289,7 @@ export class CssAnimator {

resolve(false);
}
}, this.getElementAnimationDelay(element) + 400);
}, this.getElementAnimationDelay(element) + this.animationTimeout);
});
}

Expand Down Expand Up @@ -345,7 +347,7 @@ export class CssAnimator {

resolve(false);
}
}, this.getElementAnimationDelay(element) + 400);
}, this.getElementAnimationDelay(element) + this.animationTimeout);
});
}
}
10 changes: 6 additions & 4 deletions dist/system/animator.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ System.register([], function (_export) {
this.animationEnteredClass = 'au-entered';
this.animationLeftClass = 'au-left';
this.isAnimating = false;

this.animationTimeout = 50;
}

CssAnimator.prototype.addMultipleEventListener = function addMultipleEventListener(el, s, fn) {
Expand Down Expand Up @@ -131,7 +133,7 @@ System.register([], function (_export) {

resolve(false);
}
}, _this.getElementAnimationDelay(element) + 400 + delay);
}, _this.getElementAnimationDelay(element) + _this.animationTimeout + delay);
});
};

Expand Down Expand Up @@ -200,7 +202,7 @@ System.register([], function (_export) {

resolve(false);
}
}, _this2.getElementAnimationDelay(element) + 400 + delay);
}, _this2.getElementAnimationDelay(element) + _this2.animationTimeout + delay);
});
};

Expand Down Expand Up @@ -253,7 +255,7 @@ System.register([], function (_export) {

resolve(false);
}
}, _this3.getElementAnimationDelay(element) + 400);
}, _this3.getElementAnimationDelay(element) + _this3.animationTimeout);
});
};

Expand Down Expand Up @@ -300,7 +302,7 @@ System.register([], function (_export) {

resolve(false);
}
}, _this4.getElementAnimationDelay(element) + 400);
}, _this4.getElementAnimationDelay(element) + _this4.animationTimeout);
});
};

Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.3.2 (2015-06-09)


#### Bug Fixes

* **timeout:** fixes timeouts for animation triggers ([9fb1ffa6](https://github.com/aurelia/animator-css/commit/9fb1ffa60fb4d926d4e4e587529693be8ea005ce))


### 0.3.1 (2015-06-09)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-animator-css",
"version": "0.3.1",
"version": "0.3.2",
"description": "An implementation of the abstract Animator interface from templating which enables css-based animations.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 1fc8fa2

Please sign in to comment.