You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by dd...@apache.org on 2012/09/05 17:32:14 UTC

svn commit: r1381228 - /shindig/trunk/features/src/test/javascript/features/mocks/window.js

Author: ddumont
Date: Wed Sep  5 15:32:14 2012
New Revision: 1381228

URL: http://svn.apache.org/viewvc?rev=1381228&view=rev
Log:
oauthpopup - delay checking for container code till it's defined.

Modified:
    shindig/trunk/features/src/test/javascript/features/mocks/window.js

Modified: shindig/trunk/features/src/test/javascript/features/mocks/window.js
URL: http://svn.apache.org/viewvc/shindig/trunk/features/src/test/javascript/features/mocks/window.js?rev=1381228&r1=1381227&r2=1381228&view=diff
==============================================================================
--- shindig/trunk/features/src/test/javascript/features/mocks/window.js (original)
+++ shindig/trunk/features/src/test/javascript/features/mocks/window.js Wed Sep  5 15:32:14 2012
@@ -41,6 +41,7 @@
     var id = inc++;
     timerIds[id] = new JavaAdapter(java.util.TimerTask, {run: fn});
     timer.schedule(timerIds[id], delay);
+    return id;
   };
 
   this.clearTimeout = function(id) {