1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 11:27:58 +01:00

whitespace and semicolon fixes

This commit is contained in:
Doug Kearns
2008-11-02 11:54:56 +00:00
parent d52466188e
commit 6dfc33035b
12 changed files with 41 additions and 40 deletions

View File

@@ -1083,12 +1083,11 @@ function Buffer() //{{{
elem.focus();
var evt = doc.createEvent("MouseEvents");
["mousedown", "mouseup", "click"].forEach(function (event)
{
["mousedown", "mouseup", "click"].forEach(function (event) {
evt.initMouseEvent(event, true, true, view, 1, offsetX, offsetY, 0, 0,
ctrlKey, /*altKey*/0, shiftKey, /*metaKey*/ ctrlKey, 0, null);
elem.dispatchEvent(evt);
})
});
},
get selectionController() getBrowser().docShell
@@ -1289,8 +1288,7 @@ function Buffer() //{{{
}
let option = options["pageinfo"];
let list = template.map(option, function (option)
{
let list = template.map(option, function (option) {
let opt = pageInfo[option];
if (opt)
return template.table(opt[1], opt[0](true));