Skip to content

Commit

Permalink
Fix for animation direction after switching image(s) #190
Browse files Browse the repository at this point in the history
  • Loading branch information
pisi committed May 17, 2013
1 parent 5d8f501 commit bc00e35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.reel.js
Expand Up @@ -1052,7 +1052,7 @@ jQuery.reel || (function($, window, document, undefined){
//
play: function(e, speed){
var
speed= set(_speed_, speed || get(_speed_)),
speed= speed ? set(_speed_, speed) : (get(_speed_) * negative_when(1, get(_backwards_))),
duration= opt.duration,
ticks= duration && set(_ticks_, ceil(duration * leader(_tempo_))),
backwards= set(_backwards_, speed < 0),
Expand Down

0 comments on commit bc00e35

Please sign in to comment.