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();
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();