Skip to content

Commit

Permalink
Fixed TweenMax.resumeAll() issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdoyle committed Apr 1, 2013
1 parent 9f3fdec commit 22e4c85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/com/greensock/core/Animation.as
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* VERSION: 12.0.5
* DATE: 2013-03-20
* VERSION: 12.0.6
* DATE: 2013-04-01
* AS3 (AS2 version is also available)
* UPDATES AND DOCS AT: http://www.greensock.com
**/
Expand Down Expand Up @@ -47,7 +47,7 @@ tl.add( animateOut(), 3);
*/
public class Animation {
/** @private **/
public static const version:String = "12.0.5";
public static const version:String = "12.0.6";

/**
* The object that dispatches a <code>"tick"</code> event each time the engine updates, making it easy for
Expand Down Expand Up @@ -986,7 +986,7 @@ myAnimation.reversed( !myAnimation.reversed() ); //toggles the orientation
_pauseTime = value ? raw : NaN;
_paused = value;
_active = (!value && _totalTime > 0 && _totalTime < _totalDuration);
if (!value && elapsed != 0) {
if (!value && elapsed != 0 && _duration !== 0) {
render(_time, true, true);
}
}
Expand Down

0 comments on commit 22e4c85

Please sign in to comment.