diff options
author | Aleksander Machniak <alec@alec.pl> | 2015-01-23 16:29:54 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2015-01-23 16:29:54 +0100 |
commit | b79a6e1b33aa47a93b45200997fd4514a887ea40 (patch) | |
tree | 0c7841558cb30fc5fc1be4f5b618d53f928cf4ba /skins/larry | |
parent | 2cbae4787f9a36aacb8b28d7dd617a50f17b8e7a (diff) |
Workaround Firefox 3.6 issue where "advanced options" toggle element was misplaced
Diffstat (limited to 'skins/larry')
-rw-r--r-- | skins/larry/ui.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index fb7ca318c..c07ec9989 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -290,6 +290,8 @@ function rcube_mail_ui() .toggleClass('collapsed') .closest('fieldset').children('.propform').toggle() }).addClass('collapsed') + // this magically fixes incorrect position of toggle link created above in Firefox 3.6 + .parents('form').css('display', 'inline'); } } /*** addressbook task ***/ |