mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-28 04:02:30 +01:00
Fix brokenness.
This commit is contained in:
@@ -375,7 +375,8 @@ var Mappings = Module("mappings", {
|
||||
return key;
|
||||
}).flatten().array;
|
||||
|
||||
res = util.debrace(globbed).map(k => DOM.Event.canonicalKeys(k));
|
||||
res = util.debrace(globbed)
|
||||
.map(k => DOM.Event.canonicalKeys(k));
|
||||
}
|
||||
|
||||
if (keys != arguments[0])
|
||||
|
||||
@@ -13,10 +13,11 @@ defineModule("buffer", {
|
||||
|
||||
lazyRequire("bookmarkcache", ["bookmarkcache"]);
|
||||
lazyRequire("contexts", ["Group"]);
|
||||
lazyRequire("downloads", ["Downloads"]);
|
||||
lazyRequire("io", ["io"]);
|
||||
lazyRequire("finder", ["RangeFind"]);
|
||||
lazyRequire("overlay", ["overlay"]);
|
||||
lazyRequire("promises", ["Promise", "promises"]);
|
||||
lazyRequire("promises", ["CancelablePromise", "Promise", "promises"]);
|
||||
lazyRequire("sanitizer", ["sanitizer"]);
|
||||
lazyRequire("storage", ["File", "storage"]);
|
||||
lazyRequire("template", ["template"]);
|
||||
@@ -821,7 +822,7 @@ var Buffer = Module("Buffer", {
|
||||
params.isPrivate = privacy.usePrivateBrowsing;
|
||||
}
|
||||
|
||||
let download = Downloads.createDownload({
|
||||
let download = yield Downloads.createDownload({
|
||||
source: {
|
||||
url: params.uri.spec,
|
||||
isPrivate: params.isPrivate,
|
||||
|
||||
Reference in New Issue
Block a user