<script src="/ace-builds/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
var editor = ace.edit("editor");
editor.setTheme("ace/theme/monokai");
editor.getSession().setMode("ace/mode/javascript");
</script>
This was working correctly for the last 2 years.
Today I started getting
Uncaught ReferenceError: ace is not defined
This is happening on Firefox and Chrome. While in Safari the code continues to work.
Any ideas?
PS. Of course, other js in the site might be the cause but while they are coming from the site ace is the only one coming externally. So I cannot blame changes in my js.