diff options
author | portix <none@none> | 2013-03-15 04:13:20 +0100 |
---|---|---|
committer | portix <none@none> | 2013-03-15 04:13:20 +0100 |
commit | fa00d93c8ddd539617b8257cc7542578ce1818f1 (patch) | |
tree | bbdab6ccc32f432b6f80f4033e4b53c89c5f4e2b /extensions/userscripts | |
parent | 5792415c791c941915deea0205babf6c1429845f (diff) | |
download | dwb-fa00d93c8ddd539617b8257cc7542578ce1818f1.zip |
Inline documentation of javascript api; clean up api: new namespaces net and
timer; this refers to connected object in GObject.connect, moving prototype
declarations from util.js to dwb.js; moving some functions from global namespace
to util
Diffstat (limited to 'extensions/userscripts')
-rw-r--r-- | extensions/userscripts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/userscripts b/extensions/userscripts index 82a15eb3..e8fd71ee 100644 --- a/extensions/userscripts +++ b/extensions/userscripts @@ -232,7 +232,7 @@ function doInject(frame, item) { if (item.delay > 0) { - timerStart(item.delay, function() { + timer.start(item.delay, function() { frame.inject(item.script, null, item.offset, item.unwrap); return false; }); |