diff options
author | Kris Maglione <kris@vimperator.org> | 2010-09-17 06:15:13 -0400 |
---|---|---|
committer | Kris Maglione <kris@vimperator.org> | 2010-09-17 06:15:13 -0400 |
commit | b8331a1b55714517f317d7c01ef4d798a9937403 (patch) | |
tree | 1e84e38abbf968283569dde6a8eea99f0f65b610 /common/content/tabs.js | |
parent | 8c0a734e53ca0ebbf6750948f3bed76ef55b1c89 (diff) | |
download | pentadactyl-b8331a1b55714517f317d7c01ef4d798a9937403.tar.gz |
Rename Class#setTimeout to appease AMO's validation grep.
Diffstat (limited to 'common/content/tabs.js')
-rw-r--r-- | common/content/tabs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/tabs.js b/common/content/tabs.js index f258f835..5312054e 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -38,7 +38,7 @@ const Tabs = Module("tabs", { statusline.updateTabCount(true); this.updateSelectionHistory(); if (options["focuscontent"]) - setTimeout(function () { dactyl.focusContent(true); }, 10); // just make sure, that no widget has focus + this.timeout(function () { dactyl.focusContent(true); }, 10); // just make sure, that no widget has focus }, get allTabs() Array.slice(config.tabbrowser.tabContainer.childNodes), |