Aleksander Machniak
2014-08-17 e66a77e5601842a855963a25c3f4e229969c3392
program/js/editor.js
@@ -50,7 +50,8 @@
      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
@@ -103,6 +104,10 @@
    });
    ed.on('keypress', function() {
      rcmail.compose_type_activity++;
    });
    // secure spellchecker requests with Roundcube token
    tinymce.util.XHR.on('beforeSend', function(e) {
      e.xhr.setRequestHeader('X-Roundcube-Request', rcmail.env.request_token);
    });
  };
@@ -283,9 +288,10 @@
    var ed = this.editor;
    if (ed) {
      if (ed.plugins && ed.plugins.spellchecker && this.spellcheck_active)
        ed.execCommand('mceSpellCheck');
      if (ed.plugins && ed.plugins.spellchecker && this.spellcheck_active) {
        ed.execCommand('mceSpellCheck', false);
        this.spellcheck_observer();
      }
    }
    else if (ed = this.spellchecker) {
      if (ed.state && ed.state != 'ready' && ed.state != 'no_error_found')
@@ -304,17 +310,13 @@
      return ed.state != 'ready' && ed.state != 'no_error_found';
  };
  // resume spellchecking, highlight provided mispellings without new ajax request
  // resume spellchecking, highlight provided mispellings without a new ajax request
  this.spellcheck_resume = function(data)
  {
    var ed = this.editor;
    if (ed) {
      ed.settings.spellchecker_callback = function(name, text, done, error) { done(data); };
      ed.execCommand('mceSpellCheck');
      ed.settings.spellchecker_callback = null;
      this.spellcheck_observer();
      ed.plugins.spellchecker.markErrors(data);
    }
    else if (ed = this.spellchecker) {
      ed.prepare(false, true);