diff options
author | Victor Benincasa <vbenincasa@gmail.com> | 2014-08-12 00:34:30 -0300 |
---|---|---|
committer | Victor Benincasa <vbenincasa@gmail.com> | 2014-08-12 00:34:30 -0300 |
commit | 815804988448829ca5c944f26c8cb7e9c02124da (patch) | |
tree | da5ae3e87bdc440ea337e98dc353fb40b4a8ed93 /program/js | |
parent | e9ecd49f7460f571e2bf13161038371e2d5f8bfb (diff) |
Allow browsers internal spellchecker to work
Fix a regression introduced at 731d190 that prevents in-browser spellchecker from working.
The new TinyMCE4 option is "browser_spellcheck", before it was "gecko_spellcheck".
Related ticket: http://trac.roundcube.net/ticket/1485060
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/editor.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/js/editor.js b/program/js/editor.js index 1bc92aee8..b2e96d180 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -50,7 +50,8 @@ function rcube_text_editor(config, id) convert_urls: false, // #1486944 image_description: false, paste_webkit_style: "color font-size font-family", - paste_data_images: true + paste_data_images: true, + browser_spellcheck: true }; // register spellchecker for plain text editor |