summaryrefslogtreecommitdiff
path: root/common/content/tabs.js
diff options
context:
space:
mode:
authorKris Maglione <kris@vimperator.org>2010-09-17 06:15:13 -0400
committerKris Maglione <kris@vimperator.org>2010-09-17 06:15:13 -0400
commitb8331a1b55714517f317d7c01ef4d798a9937403 (patch)
tree1e84e38abbf968283569dde6a8eea99f0f65b610 /common/content/tabs.js
parent8c0a734e53ca0ebbf6750948f3bed76ef55b1c89 (diff)
downloadpentadactyl-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.js2
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),