Skip to content

Commit

Permalink
Playback should only become inactive when animation is finished
Browse files Browse the repository at this point in the history
  • Loading branch information
mmozuras committed Sep 23, 2012
1 parent d4b15bd commit f3300f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion git-playback.js/playback.js
Expand Up @@ -55,6 +55,7 @@
prevElem.css({ display: 'none' });
hidePrevElem();
showNextElem();
active = false;
});
break;
case 'prev':
Expand All @@ -63,9 +64,9 @@
hidePrevElem();
});
prevElem.css({ display: 'none' });
active = false;
break;
}
active = false;
}
}

Expand Down

0 comments on commit f3300f8

Please sign in to comment.