diff options
author | thomascube <thomas@roundcube.net> | 2010-09-29 10:32:44 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-09-29 10:32:44 +0000 |
commit | 5371dc78899b7a4c409a4db7e5775726012c8ef2 (patch) | |
tree | 0bb57e98f066c7fdfa5229c33dbc5bdf0df02d67 | |
parent | b44c873152302b780011d415634b9a91aaad73a4 (diff) |
Correct JS syntax
-rw-r--r-- | program/js/list.js | 2 |
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; |