ui-tinymce
ui-tinymce copied to clipboard
AngularUI wrapper for TinyMCE
So I have the following proble: I set up the following options in my controller: ``` scope.tinymceOptions = { toolbar: 'bold italic | link image | alignleft aligncenter alignright', menubar:...
Hello, I need some guidance here, I'm trying to load a page with multiple text-area on it, but only load the tinyMCE on a specifyed textarea when it's needed. To...
Hi, I Have many instances of TinyMCE in the same view. When I try to get by ID, for example: ``` ``` If I execute: `tinyMCE.get('introduction')` returns null. If try...
For some reason when I utilize `ng-model-options="{ updateOn: 'default blur', debounce: { 'default': 5000, 'blur': 0 } }"` . `Default` delay of 5000 is working alright. However, `onBlur` doesn't trigger...
Is that possible to update model only on blur something like this: `ng-model-options="{ updateOn: 'blur' }"`
I'm having an issue where holding down the backspace key removes all the characters from the editor, but it does not update the angular model. From what I can tell...
This fixes #321 and #323
Hi, When we past text in the wysiwyg, the ngModel is not up to date. We have to enter some text after to make it work. Tinymce on the last...
This code resolve the issue https://github.com/angular-ui/ui-tinymce/issues/355
For dynamically created editors (e.g. with ngRepeat) the unique id that is generated and set to the element during linking may be overwritten, if the id is generated with an...