I'm running into an issue getting the TinyMCE HTML popup editor working in production when serving static files via Amazon S3. Everything else seems to work, except the HTML popup editor.
Relavent library versions ...
My TinyMCE setup.js file ...
tinyMCE.init({
mode : "specific_textareas",
editor_selector : "RichTextField",
theme : "advanced",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,undo,redo,|,cleanup,|,formatselect,bullist,numlist,|,code,",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : ""
});
Other similar threads that I've bookmarked to try and find an answer ...
The error I'm getting in the browser console when I click on the "html" icon to open the editor, with domains anonymized ...
I'm wondering if anyone else has ran across this before and has an easy solution. If anyone finds solution it might be good to add it to the Gjango Grappelli docs.