1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-17 15:45:47 +01:00

2 Commits

Author SHA1 Message Date
MadAnd
864482cd7b Release 1.2pre-pm-3 2017-01-23 04:13:03 +02:00
Zheng Chaoping
0a46c4be52 Cherry pick 5digits/dactyl#178
Fix `TypeError: options is undefined`

When open a new window and close it, then press `gg` in the original window
will throw `TypeError: options is undefined`.
2017-01-23 04:10:23 +02:00
3 changed files with 7 additions and 11 deletions

View File

@@ -2069,13 +2069,6 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
statusline.update();
dactyl.log(_("dactyl.initialized", config.appName), 0);
dactyl.initialized = true;
util.delay(() => {
if (services.focus.activeWindow === window)
overlay.activeWindow = window;
util.flushLateMethods(dactyl);
});
}
});

View File

@@ -618,9 +618,6 @@ var Events = Module("events", {
util.trapErrors("addEditActionListener",
DOM(elem).editor, editor);
if (elem == window)
overlay.activeWindow = window;
overlay.setData(elem, "had-focus", true);
if (event.target instanceof Ci.nsIDOMXULTextBoxElement)
if (Events.isHidden(elem, true))
@@ -873,6 +870,12 @@ var Events = Module("events", {
autocommands.trigger("Fullscreen", { url: this._fullscreen ? "on" : "off", state: this._fullscreen });
}
statusline.updateZoomLevel();
},
activate: function onActivate(event) {
if (event.target === window) {
overlay.activeWindow = window;
}
}
},

View File

@@ -5,7 +5,7 @@
em:id="pentadactyl@addons.palemoon.org"
em:type="2"
em:name="Pentadactyl"
em:version="1.2pre-pm-2"
em:version="1.2pre-pm-3"
em:description="Pale Moon for Vim and Links addicts"
em:homepageURL="http://5digits.org/pentadactyl"
em:bootstrap="true"