This repository was archived by the owner on Sep 8, 2020. It is now read-only.
This repository was archived by the owner on Sep 8, 2020. It is now read-only.
baseURL does not work for asset loading #199
Closed
Description
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));
});