mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 06:58:00 +01:00
Whitespace and semicolon fixes.
This commit is contained in:
8
common/content/liberator.js
Normal file → Executable file
8
common/content/liberator.js
Normal file → Executable file
@@ -489,7 +489,7 @@ const liberator = (function () //{{{
|
||||
bang: true,
|
||||
completer: function (context)
|
||||
{
|
||||
completion.extension(context)
|
||||
completion.extension(context);
|
||||
if (command.filter)
|
||||
context.filters.push(command.filter);
|
||||
},
|
||||
@@ -852,7 +852,7 @@ const liberator = (function () //{{{
|
||||
function (elem) [elem.textContent, file]);
|
||||
});
|
||||
return util.Array.flatten(res);
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
completion.menuItem = function menuItem(context) {
|
||||
@@ -866,7 +866,7 @@ const liberator = (function () //{{{
|
||||
context.title = ["Toolbar"];
|
||||
context.keys = { text: function (item) item.getAttribute("toolbarname"), description: function () "" };
|
||||
context.completions = buffer.evaluateXPath("./*[@toolbarname]", document, toolbox);
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////}}}
|
||||
@@ -913,7 +913,7 @@ const liberator = (function () //{{{
|
||||
}
|
||||
|
||||
//const Extension = new Struct("id", "name", "description", "icon", "enabled", "version");
|
||||
return extensions.map(function(e) ({
|
||||
return extensions.map(function (e) ({
|
||||
id: e.id,
|
||||
name: e.name,
|
||||
description: getRdfProperty(e, "description"),
|
||||
|
||||
Reference in New Issue
Block a user