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
{{ message }}
This repository was archived by the owner on Sep 8, 2020. It is now read-only.
In the readme it says that we should use this to set options:
$scope.tinymceOptions = { ... }
I could not get that to work and i found no code that looks to be doing that in the source. (might be some angular- convention i dont know about?)
I did however find support for config via attributes:
if (attrs.uiTinymce) {
expression = scope.$eval(attrs.uiTinymce);
In the latest version of chrome on OS X this does not work, since it seems to treat all attrs on html-elements as lowercase, so i had to change to attrs.uitinymce to get it to read the settings. Then it works :)
So, is this a bug (or two) or have i just not understood how to use this?