summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/list.js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-17 13:48:23 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-17 13:48:23 +0000
commit4cea150a5fd936a909792159cac7f5912d215dcd (patch)
treecdeb0dca2d28db2d8c52f32855561dc57a57f4bb /roundcubemail/program/js/list.js
parentbef8e6f7f2151841fc068266694414115309caaf (diff)
- use jQuery.inArray() instead of rcube_in_array()
git-svn-id: https://svn.roundcube.net/trunk@3371 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/list.js')
-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 3ab4b1a83..5764afc98 100644
--- a/roundcubemail/program/js/list.js
+++ b/roundcubemail/program/js/list.js
@@ -840,7 +840,7 @@ highlight_row: function(id, multiple)
}
else // unselect row
{
- var p = find_in_array(id, this.selection);
+ var p = jQuery.inArray(id, this.selection);
var a_pre = this.selection.slice(0, p);
var a_post = this.selection.slice(p+1, this.selection.length);
this.selection = a_pre.concat(a_post);