1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-27 01:15:47 +01:00

Release 1.0 βeta 4.

This commit is contained in:
Kris Maglione
2010-12-30 22:59:12 -05:00
parent eb59a48d77
commit 2a218c2785
8 changed files with 18 additions and 16 deletions

View File

@@ -159,7 +159,11 @@ function defineModule(name, params) {
defineModule.loadLog = [];
Object.defineProperty(defineModule.loadLog, "push", {
value: function (val) { defineModule.dump(val + "\n"); this[this.length] = val; }
value: function (val) {
if (false)
defineModule.dump(val + "\n");
this[this.length] = Date.now() + " " + val;
}
});
defineModule.dump = function dump_() {
let msg = Array.map(arguments, function (msg) {