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]);
}
}