From 81ab85e5ab9377fd805a91a78388ad9775366a34 Mon Sep 17 00:00:00 2001 From: alecpl Date: Wed, 17 Mar 2010 13:48:23 +0000 Subject: - use jQuery.inArray() instead of rcube_in_array() --- program/js/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'program/js/app.js') diff --git a/program/js/app.js b/program/js/app.js index a5114fadf..7aca3d8de 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -733,7 +733,7 @@ function rcube_webmail() var qstring = '_mbox='+urlencode(this.env.mailbox)+'&_uid='+this.env.uid+'&_part='+props.part; // open attachment in frame if it's of a supported mimetype - if (this.env.uid && props.mimetype && find_in_array(props.mimetype, this.mimetypes)>=0) + if (this.env.uid && props.mimetype && jQuery.inArray(props.mimetype, this.mimetypes)>=0) { if (props.mimetype == 'text/html') qstring += '&_safe=1'; @@ -4276,12 +4276,12 @@ function rcube_webmail() this.env.flagged_col = null; var found; - if((found = find_in_array('subject', this.env.coltypes)) >= 0) { + if((found = jQuery.inArray('subject', this.env.coltypes)) >= 0) { this.set_env('subject_col', found); if (this.message_list) this.message_list.subject_col = found+1; } - if((found = find_in_array('flag', this.env.coltypes)) >= 0) + if((found = jQuery.inArray('flag', this.env.coltypes)) >= 0) this.set_env('flagged_col', found); }; -- cgit v1.2.3