stylistic rewrite. popcorn-port
authorhamidouk
Thu, 05 Jan 2012 14:57:37 +0100
branchpopcorn-port
changeset 586 a3705fc7e054
parent 585 44a4a4a179c1
child 587 cd051898866e
stylistic rewrite.
src/js/pop.js
--- a/src/js/pop.js	Thu Jan 05 13:15:24 2012 +0100
+++ b/src/js/pop.js	Thu Jan 05 14:57:37 2012 +0100
@@ -25,8 +25,9 @@
     return;
 
   var d = IriSP.PopcornReplacement.msgPump[msg];
-  for(var entry in d) {
-    d[entry].call(window, params);
+  var i = 0;
+  for(var i = 0; i < d.length; i++) {
+    d[i].call(window, params);
   }
 
 };