diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-08-30 13:08:12 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-08-30 13:08:12 +0000 |
| commit | 03653aaf15863377d5e7492291631dba24b90201 (patch) | |
| tree | 1d0b3d648fc0483ac49eb0877ae32cc0c9828f78 | |
| parent | 114bc8f78465ba8929a5034e71d9526c7dd64ef7 (diff) | |
- Fix JS error when spellchecker feature is disabled
git-svn-id: https://svn.roundcube.net/trunk@3925 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 5385c4936..7df194253 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -2847,7 +2847,7 @@ function rcube_webmail() { var ed; if (window.tinyMCE && (ed = tinyMCE.get(this.env.composebody))) { - if (ed.plugins.spellchecker.active) + if (ed.plugins.spellchecker && ed.plugins.spellchecker.active) ed.execCommand('mceSpellCheck'); } else if ((ed = this.env.spellcheck) && !this.spellcheck_ready) { |
