angular-froala-wysiwyg
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)
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.