From f6113bc0d4e2c5af059811f1feab46645f963fab Mon Sep 17 00:00:00 2001 From: Christopher De Cairos Date: Fri, 22 Jul 2011 14:11:58 -0400 Subject: [PATCH 001/140] modified buildFrameRunner so that it wont run onFrame after onEnd --- plugins/code/popcorn.code.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/plugins/code/popcorn.code.js b/plugins/code/popcorn.code.js index a871a3505..52f7f3aca 100755 --- a/plugins/code/popcorn.code.js +++ b/plugins/code/popcorn.code.js @@ -78,10 +78,8 @@ return function( f, options ) { var _f = function() { - f(); - if ( running ) { - runner( _f ); - } + running && f(); + running && runner( _f ); }; _f(); From 00b8fefa6b163230668bd4997712eeb3fdba11c0 Mon Sep 17 00:00:00 2001 From: ScottDowne Date: Mon, 29 Aug 2011 12:53:33 -0400 Subject: [PATCH 002/140] [#685] fixed an issue where a footnote unit test was being run twice --- plugins/footnote/popcorn.footnote.unit.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/plugins/footnote/popcorn.footnote.unit.js b/plugins/footnote/popcorn.footnote.unit.js index dbdf83f16..f35c3661e 100755 --- a/plugins/footnote/popcorn.footnote.unit.js +++ b/plugins/footnote/popcorn.footnote.unit.js @@ -84,18 +84,19 @@ test("Popcorn Text Plugin", function () { plus(); popped.text({ - start: 0, // seconds - end: 3, // seconds + start: 5, // seconds + end: 6, // seconds text: "I am an alias", target: "textdiv" }); stop(); - popped.exec( 2, function() { + popped.exec( 5, function() { equal( textdiv.children[0].innerHTML , "I am an alias", "I am an alias set by Popcorn.p.text" ); plus(); - }).currentTime(1).play(); + popped.pause(); + }).currentTime(5).play(); }); From 27490ef31ee046859a5e8b7263fa119e3438420f Mon Sep 17 00:00:00 2001 From: Jon Buckley Date: Tue, 30 Aug 2011 15:15:43 -0400 Subject: [PATCH 003/140] Remove git merge marker --- test/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/test/index.html b/test/index.html index dd813c18a..b29fafa1a 100644 --- a/test/index.html +++ b/test/index.html @@ -54,7 +54,6 @@

-<<<<<<< HEAD