From 9ac8dc2ef24097441d6ea67948e26d5637570f57 Mon Sep 17 00:00:00 2001 From: Fabian Jakobs Date: Mon, 7 Feb 2011 11:56:40 +0100 Subject: [PATCH] small change to the demo document --- build_support/editor.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_support/editor.html b/build_support/editor.html index b54f3b69..8f8a7895 100644 --- a/build_support/editor.html +++ b/build_support/editor.html @@ -22,7 +22,8 @@
function foo(items) {
-    for (var i = 0; i < items.length; i++) {
+    var i;
+    for (i = 0; i < items.length; i++) {
         alert("Ace Rocks " + items[i]);
     }
 }