You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, Any luck with this issue?
I am kind of stuck with similar issue.
I am using ui-router. Two of my routes have html with ng-ckeditor on it.
When I go from page-1 to page-2;
Page-2 creditor seems to throw n error
"Type Error: cannot find the property $$phase of undefined"
It's basically an Angular error which cropped through ckeditor.
Seems like the repo admin not bothered of answering queries
https://github.com/esvit/ng-ckeditor/blob/master/ng-ckeditor.js#L87 seems to need an addition to fix an error "CKEditor Uncaught TypeError: Cannot call method 'unselectable' of null" (multiple instances, multiple creations/destructions to reproduce).
Found while googling this error - http://stackoverflow.com/questions/19328548/ckeditor-uncaught-typeerror-cannot-call-method-unselectable-of-null-in-emberj
Needed addition (before "CKEDITOR.instances[instance.name].destroy();"):
CKEDITOR.instances[instance.name].removeAllListeners();
The text was updated successfully, but these errors were encountered: