In my XPI I am fetching javascript code from the user's PC (file://) and run the js code in sandbox.
For some reason I get not well formed error on the first line of my code which is a comment:
// Yosy
My code is still running but this error is annoying and I want to fix this, any suggestions?
Code Example for running the code:
var sandbox = new Components.utils.Sandbox(safeWin);
sandbox.window = win;
sandbox.doc = win.doc;
sandbox.__proto__ = win;
Components.utils.Sandbox? Could we maybe see a snippet of the critical code? – Saebekassebil Mar 25 '12 at 11:31