summaryrefslogtreecommitdiff
path: root/common/content/dactyl.js
diff options
context:
space:
mode:
Diffstat (limited to 'common/content/dactyl.js')
-rw-r--r--common/content/dactyl.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/common/content/dactyl.js b/common/content/dactyl.js
index e1961c62..ed6fd896 100644
--- a/common/content/dactyl.js
+++ b/common/content/dactyl.js
@@ -2015,9 +2015,12 @@ const Dactyl = Module("dactyl", {
// first time intro message
const firstTime = "extensions." + config.name + ".firsttime";
if (prefs.get(firstTime, true)) {
- util.timeout(function () {
- dactyl.help();
- prefs.set(firstTime, false);
+ dactyl.timeout(function () {
+ this.withSavedValues(["forceNewTab"], function () {
+ this.forceNewTab = true;
+ this.help();
+ prefs.set(firstTime, false);
+ });
}, 1000);
}