ckeditor_ajax.js.coffee 283 B

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