1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 07:17:59 +01:00

whitespace and semicolon fixes

This commit is contained in:
Doug Kearns
2008-11-02 11:54:56 +00:00
parent d52466188e
commit 6dfc33035b
12 changed files with 41 additions and 40 deletions

View File

@@ -96,7 +96,7 @@ const util = { //{{{
{
this.doneAt = Date.now() + minInterval;
}
}
};
this.tell = function (arg)
{
if (arg !== undefined)
@@ -115,17 +115,17 @@ const util = { //{{{
this.latest = now + maxInterval;
timer.initWithCallback(this, Math.max(timeout, 0), timer.TYPE_ONE_SHOT);
this.doneAt = -1;
}
};
this.reset = function ()
{
timer.cancel();
this.doneAt = 0;
}
};
this.flush = function ()
{
if (this.latest)
this.notify();
}
};
},
ciCompare: function (a, b)