angular-froala-wysiwyg icon indicating copy to clipboard operation
angular-froala-wysiwyg copied to clipboard

Not working with lastest version of froala (You should use the edit.off method in order to make the editor not editable. It is best to do that inside the initialized event)

Open poddarkhushbu07 opened this issue 4 years ago • 0 comments

You should use the edit.off method in order to make the editor not editable. It is best to do that inside the initialized event.

public options: Object = {
  placeholder: "Edit Me",
  events : {
    'froalaEditor.initialized' : function(e, editor) {
      editor.edit.off();
    }
  }
}

Originally posted by @stefanneculai in https://github.com/froala/angular-froala-wysiwyg/issues/75#issuecomment-310709095

Tried this with v3.1.0 and latest version. In both this is not working.

poddarkhushbu07 avatar Feb 24 '21 14:02 poddarkhushbu07