diff options
author | thomascube <thomas@roundcube.net> | 2011-12-19 12:44:40 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-12-19 12:44:40 +0000 |
commit | 18863495ae95937276919f83db54f439ede8bd18 (patch) | |
tree | b383c7f0ec8182d316053723af96abb3e04f7880 /program/js/app.js | |
parent | fbebf54a927f4431690286d78e1fe7336f738f63 (diff) |
Fix compose editor toggling and other style improvements
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 1c24add46..0cc2a1f53 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3092,7 +3092,7 @@ function rcube_webmail() if (!vis) this.stop_spellchecking(); - $(this.env.spellcheck.spell_container).css('visibility', vis ? 'visible' : 'hidden'); + $(this.env.spellcheck.spell_container)[vis ? 'show' : 'hide'](); } }; |