summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2010-09-29 10:32:07 +0000
committerthomascube <thomas@roundcube.net>2010-09-29 10:32:07 +0000
commitcecf83a48d3bde732f5cffacd0499f67ff23254c (patch)
tree4fa8b32e3c5fbbff5bfbe602906b489aec0bc5c0
parentb9c08759f0433d9a24f0c8595c16624684f63e0d (diff)
Correct JS syntaxv0.4.1@4045
-rw-r--r--program/js/list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js
index 22c8080a7..2b4961235 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -862,7 +862,7 @@ clear_selection: function(id)
// one row
if (id) {
- for (var n=0 in this.selection)
+ for (var n in this.selection)
if (this.selection[n] == id) {
this.selection.splice(n,1);
break;