1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-11 21:35:52 +01:00

Add missing semicolons.

This commit is contained in:
Doug Kearns
2015-05-25 23:54:56 +10:00
parent 72a4d80ad1
commit 5ab1befbf7
35 changed files with 82 additions and 84 deletions

View File

@@ -728,7 +728,7 @@ var Buffer = Module("Buffer", {
return !b
|| a[0] == b[0] && a[1] == b[1]
|| a[0] != b[0] && a[1] != b[1];
}
};
let link = DOM("link[href][rev=canonical], \
link[href][rel=shortlink]", doc)
@@ -749,7 +749,7 @@ var Buffer = Module("Buffer", {
link[href][rel=shortlink]", this.doc)
.each(elem => {
overlay.getData(elem, "link-check",
() => [elem.href, this.pageURI.spec])
() => [elem.href, this.pageURI.spec]);
});
},
@@ -1264,7 +1264,7 @@ var Buffer = Module("Buffer", {
encoder.init(doc, "text/unicode", encoder.OutputRaw|encoder.OutputPreformatted);
OS.File.writeAtomic(file.path, encoder.encodeToString())
.then(() => { resolve([file, true]) })
.then(() => { resolve([file, true]); })
.catch(reject);
}
else {