summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-29 10:32:44 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-29 10:32:44 +0000
commit9489c28ecaf0a453194e626553d14ae0a4b2efc1 (patch)
tree45423e1dcc147368a938d5bcb4f2ea3f3ffd21e9 /roundcubemail/program
parentf922b71d7a9d3ff5f73830c164b6954485c52eed (diff)
Correct JS syntax
git-svn-id: https://svn.roundcube.net/trunk@4006 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/js/list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/list.js b/roundcubemail/program/js/list.js
index 22c8080a7..2b4961235 100644
--- a/roundcubemail/program/js/list.js
+++ b/roundcubemail/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;