We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using latest version of tincymce (4.3.3), it is looking for theme+skin under /bower_components/tx-tinymce instead of /bower_components/tinymce
/bower_components/tx-tinymce
/bower_components/tinymce
I tried editing tx-tinymce.js to add to config:
theme_url: '/bower_components/tinymce/themes/modern/theme.js', skin_url: '/bower_components/tinymce/skins/lightgray',
Seems to have fixed it, but I think there is a better way besides hard coding bower_component paths into config.
The text was updated successfully, but these errors were encountered:
Ok... figured it out.
Need to add the following line anywhere in code: tinyMCE.baseURL = '/bower_components/tinymce/';
tinyMCE.baseURL = '/bower_components/tinymce/';
Maybe an update to the README about this would be helpful.
Sorry, something went wrong.
No branches or pull requests
Using latest version of tincymce (4.3.3), it is looking for theme+skin under
/bower_components/tx-tinymce
instead of/bower_components/tinymce
I tried editing tx-tinymce.js to add to config:
Seems to have fixed it, but I think there is a better way besides hard coding bower_component paths into config.
The text was updated successfully, but these errors were encountered: