1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-05 14:05:45 +01:00

Fix live update issue.

This commit is contained in:
Kris Maglione
2011-02-08 22:43:10 -05:00
parent 8aa02f6d7a
commit f904799f9d
3 changed files with 6 additions and 6 deletions

View File

@@ -728,6 +728,6 @@ config.INIT = update(Object.create(config.INIT), config.INIT, {
endModule();
} catch(e){ if (isString(e)) e = Error(e); dump(e.fileName+":"+e.lineNumber+": "+e+"\n" + e.stack); }
} catch(e){ if (typeof e === "string") e = Error(e); dump(e.fileName+":"+e.lineNumber+": "+e+"\n" + e.stack); }
// vim: set fdm=marker sw=4 sts=4 et ft=javascript: