Quantcast
Channel: JavaScriptMVC Forum
Viewing all articles
Browse latest Browse all 3491

Re : Error code 9 - building with jmvc 3.3

$
0
0
Solved!

A very specific code not supported by rhino broke the build almost silently.
Escape it as mentioned in the documentation solved the issue.

  1.             if(!steal.isRhino) {
  2.                 var event = document.createEvent('CustomEvent');
  3.                 event.initCustomEvent(eventName, true, true, data);
  4.                 document.documentElement.dispatchEvent(event);
  5.             }

Viewing all articles
Browse latest Browse all 3491

Trending Articles