1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-13 14:25:51 +01:00

Experimentally move more modules to global modules.

--HG--
rename : common/content/completion.js => common/modules/completion.jsm
rename : common/content/javascript.js => common/modules/javascript.jsm
This commit is contained in:
Kris Maglione
2011-01-03 23:41:48 -05:00
parent d661d60cb6
commit ee2bba53ca
5 changed files with 152 additions and 103 deletions

View File

@@ -1501,6 +1501,6 @@ var Math = update(Object.create(GlobalMath), {
endModule();
} catch(e){ if (isString(e)) e = Error(e); dump(e.fileName+":"+e.lineNumber+": "+e+"\n" + e.stack); }
} catch(e){ if (!e.stack) e = Error(e); dump(e.fileName+":"+e.lineNumber+": "+e+"\n" + e.stack); }
// vim: set fdm=marker sw=4 ts=4 et ft=javascript: