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.
I tried specifying the baseURL on the config object and it was not respected. I got loading errors because tinymce was looking for assets in a relative directory. To fix this I had to explicitly set the baseURL before calling init.
$timeout(function () {
tinymce.baseURL = options.baseURL; // I HAD TO ADD THIS LINE
tinymce.init(options);
toggleDisable(scope.$eval(attrs.ngDisabled));
});