From 81ab85e5ab9377fd805a91a78388ad9775366a34 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Wed, 17 Mar 2010 09:48:23 -0400 Subject: [PATCH] - use jQuery.inArray() instead of rcube_in_array() --- program/js/app.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index a5114fa..7aca3d8 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -733,7 +733,7 @@ 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 @@ 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); }; -- Gitblit v1.9.1