summaryrefslogtreecommitdiff
path: root/devel-utf8/itjs/timer.js
diff options
context:
space:
mode:
authorNathan Gass2012-03-22 18:19:43 +0000
committerNathan Gass2012-03-22 18:19:43 +0000
commit1336ce6ac3baacd1cecbf776cfafa81f8d025272 (patch)
tree3924b3e2e12a5d5ea3b40890477d5e070498543c /devel-utf8/itjs/timer.js
parentd59a4921188753dbe4c0161081755a28112c3ef6 (diff)
downloaditools-1336ce6ac3baacd1cecbf776cfafa81f8d025272.tar.gz
itools-1336ce6ac3baacd1cecbf776cfafa81f8d025272.tar.bz2
itools-1336ce6ac3baacd1cecbf776cfafa81f8d025272.zip
Wrong branch itools/live/devel-utf8 removed
Diffstat (limited to 'devel-utf8/itjs/timer.js')
-rw-r--r--devel-utf8/itjs/timer.js64
1 files changed, 0 insertions, 64 deletions
diff --git a/devel-utf8/itjs/timer.js b/devel-utf8/itjs/timer.js
deleted file mode 100644
index ee04cbb..0000000
--- a/devel-utf8/itjs/timer.js
+++ /dev/null
@@ -1,64 +0,0 @@
-/**
- * Start new timer
- * Example: timer = new it_timer({ object:this, method:"timer", timeout:100});
- *
- * @param p.object Object to call method in when timer fires
- * @param p.method String with method name to call in object
- * @param p.timeout Timeout in milliseconds
- * @param p.continuous One-shot or continuous timer, default is one-shot
- * @return timer id (deprecated, use method stop() instead)
- */
-function it_timer(p)
-{
- this.func = p.continuous ? "Interval" : "Timeout";
- return this.timer = window["set" + this.func](function() { p.object[p.method](p) }, p.timeout);
-}
-
-it_timer.prototype =
-{
-
-stop: function()
-{
- if (this.timer)
- {
- window["clear" + this.func](this.timer);
- this.timer = null;
- }
-} /* NO COMMA */
-
-}
-
-/**
- * Global helper function to benchmark javascript
- * @parameter label Message label like "start" or "end"
- * @paramter print Whether to output timerlog via ED() and clear it (optional)
- */
-function it_timerlog(label, print)
-{
- if (window.it_timerlog_active)
- {
- var end = new Date().getTime();
-
- if (typeof window.it_timernow != "undefined")
- {
- var start = window.it_timernow;
-
- if (window.it_timerlogmsg != "")
- window.it_timerlogmsg += ", ";
-
- window.it_timerlogmsg += label + ":" + (end - start);
- }
- else
- window.it_timerlogmsg = "";
-
- window.it_timernow = end;
-
- if (print)
- {
- ED("timerlog: " + window.it_timerlogmsg);
- window.it_timerlogmsg = "";
- }
- }
-}
-
-it_timerlog(""); // Set start time