diff options
author | alecpl <alec@alec.pl> | 2010-03-17 18:21:07 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-03-17 18:21:07 +0000 |
commit | c16986be7f5f4df21bfc85a93a2c35f38c86bf12 (patch) | |
tree | 377fb567e189b7bf85f50f28512b40a84d2181ae /program | |
parent | caf601a28f542da7d71464f5c37fc127398961a2 (diff) |
- use popupmenu style for attachments upload form
- move .popupmenu style definition to common.css
Diffstat (limited to 'program')
-rw-r--r-- | program/js/app.js | 6 | ||||
-rw-r--r-- | program/steps/mail/compose.inc | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/program/js/app.js b/program/js/app.js index 7aca3d8de..87ee76c8f 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2832,7 +2832,7 @@ function rcube_webmail() { if (!this.gui_objects.uploadbox) return false; - + var elm, list; if (elm = this.gui_objects.uploadbox) { @@ -2842,8 +2842,8 @@ function rcube_webmail() elm.style.top = (pos.top + list.offsetHeight + 10) + 'px'; elm.style.left = pos.left + 'px'; } - - elm.style.visibility = a ? 'visible' : 'hidden'; + + $(elm).toggle(); } // clear upload form diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index a5b0a340e..a8b2fa5f2 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -901,7 +901,7 @@ function rcmail_compose_attachment_form($attrib) html::div(null, rcmail_compose_attachment_field(array('size' => $attrib[attachmentfieldsize]))) . html::div('hint', rcube_label(array('name' => 'maxuploadsize', 'vars' => array('size' => $max_filesize)))) . html::div('buttons', - $button->show(rcube_label('close'), array('class' => 'button', 'onclick' => "document.getElementById('$attrib[id]').style.visibility='hidden'")) . ' ' . + $button->show(rcube_label('close'), array('class' => 'button', 'onclick' => "$('#$attrib[id]').hide()")) . ' ' . $button->show(rcube_label('upload'), array('class' => 'button mainaction', 'onclick' => JS_OBJECT_NAME . ".command('send-attachment', this.form)")) ) ) |