summaryrefslogtreecommitdiff
path: root/program/js/list.js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2010-09-29 10:32:44 +0000
committerthomascube <thomas@roundcube.net>2010-09-29 10:32:44 +0000
commit5371dc78899b7a4c409a4db7e5775726012c8ef2 (patch)
tree0bb57e98f066c7fdfa5229c33dbc5bdf0df02d67 /program/js/list.js
parentb44c873152302b780011d415634b9a91aaad73a4 (diff)
Correct JS syntax
Diffstat (limited to 'program/js/list.js')
-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;