Skip to content

Commit

Permalink
fix for rwaldron#35
Browse files Browse the repository at this point in the history
  • Loading branch information
tammo0 committed May 16, 2012
1 parent 7b033a1 commit 3024fcb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion popcorn.sequence.js
Expand Up @@ -325,7 +325,17 @@

play: function() {

this.playlist[ this.active ].play();
if (((this.queue.length-1) == this.active) &&
(this.inOuts["ofVideos"][this.active]["out"] >= Math.round(this.queue[this.active].currentTime)))
{

return this;

} else {

this.queue[ this.active ].play();

}

return this;
},
Expand Down

0 comments on commit 3024fcb

Please sign in to comment.