From f94e442469deca30b39f3fa08aade83cbd0ede70 Mon Sep 17 00:00:00 2001 From: thomascube Date: Fri, 16 Dec 2011 18:38:59 +0000 Subject: Add more classes and options to HTML elements for better styleability --- program/js/app.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'program/js') diff --git a/program/js/app.js b/program/js/app.js index da1e241ec..46326cecc 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -931,8 +931,8 @@ function rcube_webmail() case 'send-attachment': // Reset the auto-save timer self.clearTimeout(this.save_timer); - - this.upload_file(props) + + this.upload_file(props || this.gui_objects.uploadform); break; case 'insert-sig': @@ -3357,9 +3357,9 @@ function rcube_webmail() ts = frame_name.replace(/^rcmupload/, ''); if (this.env.loadingicon) - content = ''+content; + content = ''+content; if (this.env.cancelicon) - content = ''+content; + content = ''+content; this.add2attachment_list(ts, { name:'', html:content, complete:false }); // upload progress support @@ -3380,7 +3380,7 @@ function rcube_webmail() if (!this.gui_objects.attachmentlist) return false; - var indicator, li = $('
  • ').attr('id', name).html(att.html); + var indicator, li = $('
  • ').attr('id', name).addClass(att.classname).html(att.html); // replace indicator's li if (upload_id && (indicator = document.getElementById(upload_id))) { -- cgit v1.2.3