summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-12-19 12:44:40 +0000
committerthomascube <thomas@roundcube.net>2011-12-19 12:44:40 +0000
commit18863495ae95937276919f83db54f439ede8bd18 (patch)
treeb383c7f0ec8182d316053723af96abb3e04f7880 /program/js/app.js
parentfbebf54a927f4431690286d78e1fe7336f738f63 (diff)
Fix compose editor toggling and other style improvements
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js2
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']();
}
};