ckeditor_ajax.js.coffee 323 B

123456789
  1. $(document).ready ->
  2. $(document).on 'mousedown', '.save-action', (e) -> # triggers also when submitting form with enter
  3. return true unless window.CKEDITOR?
  4. for instance of CKEDITOR.instances
  5. editor = CKEDITOR.instances[instance]
  6. if editor.checkDirty()
  7. editor.updateElement();
  8. return true;