mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 15:47:58 +01:00
Fix about:pentadactyl by registering the component manually. Et cetera.
This commit is contained in:
@@ -176,7 +176,7 @@ var Buffer = Module("buffer", {
|
||||
if (!(uri || doc.location))
|
||||
return;
|
||||
|
||||
uri = uri || doc.documentURIObject;
|
||||
uri = uri || util.newURI(doc.location.href);
|
||||
let args = {
|
||||
url: { toString: function () uri.spec, valueOf: function () uri },
|
||||
title: doc.title
|
||||
@@ -225,7 +225,7 @@ var Buffer = Module("buffer", {
|
||||
else {
|
||||
// code which should happen for all (also background) newly loaded tabs goes here:
|
||||
if (doc != config.browser.contentDocument)
|
||||
dactyl.echomsg({ domains: [doc.location.host], message: "Background tab loaded: " + (doc.title || doc.location.href) }, 3);
|
||||
dactyl.echomsg({ domains: [util.getHost(doc.location)], message: "Background tab loaded: " + (doc.title || doc.location.href) }, 3);
|
||||
|
||||
this._triggerLoadAutocmd("PageLoad", doc);
|
||||
}
|
||||
@@ -1012,7 +1012,7 @@ var Buffer = Module("buffer", {
|
||||
return true;
|
||||
};
|
||||
|
||||
let url = isString(doc) ? util.newURI(doc) : doc.documentURIObject;
|
||||
let url = isString(doc) ? util.newURI(doc) : util.newURI(doc.location.href);
|
||||
|
||||
if (!isString(doc))
|
||||
return io.withTempFiles(function (temp) {
|
||||
@@ -1358,7 +1358,7 @@ var Buffer = Module("buffer", {
|
||||
|
||||
dactyl.assert(args.bang || !file.exists(), "E13: File exists (add ! to override)");
|
||||
|
||||
chosenData = { file: file, uri: doc.documentURIObject };
|
||||
chosenData = { file: file, uri: util.newURI(doc.location.href) };
|
||||
}
|
||||
|
||||
// if browser.download.useDownloadDir = false then the "Save As"
|
||||
|
||||
Reference in New Issue
Block a user