diff options
author | alecpl <alec@alec.pl> | 2011-12-21 10:07:42 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-12-21 10:07:42 +0000 |
commit | 96c946ee6ced0a9a68ef251528a3f900d5a01396 (patch) | |
tree | aa48a1c71b47bb32be33261b0c16524b64cfdb7c /program/js | |
parent | 89dc8499c3e51d426f685ff70e4e878d992ad2c7 (diff) |
- Applied fixes from trunk up to r5633
Diffstat (limited to 'program/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 e1c436263..58d7f1e86 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3082,7 +3082,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'](); } }; |