mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 08:08:00 +01:00
whitespace fixes
This commit is contained in:
@@ -196,7 +196,7 @@ liberator.Search = function () //{{{
|
|||||||
this.endPt.setStart(body, count);
|
this.endPt.setStart(body, count);
|
||||||
this.endPt.setEnd(body, count);
|
this.endPt.setEnd(body, count);
|
||||||
|
|
||||||
for(let retRange in this.search(aWord, caseSensitive)) {
|
for (let retRange in this.search(aWord, caseSensitive)) {
|
||||||
// Highlight
|
// Highlight
|
||||||
var nodeSurround = baseNode.cloneNode(true);
|
var nodeSurround = baseNode.cloneNode(true);
|
||||||
var node = this.highlight(retRange, nodeSurround);
|
var node = this.highlight(retRange, nodeSurround);
|
||||||
|
|||||||
@@ -257,13 +257,13 @@ liberator.IO = function () //{{{
|
|||||||
"List all sourced script names",
|
"List all sourced script names",
|
||||||
function ()
|
function ()
|
||||||
{
|
{
|
||||||
var list = "<table>";
|
var list = "<table>";
|
||||||
|
|
||||||
for (var i = 0; i < scriptNames.length; i++)
|
for (var i = 0; i < scriptNames.length; i++)
|
||||||
list += "<tr><td style=\"text-align: right\">" + (i + 1) + ".</td><td>" + scriptNames[i] + "</td></tr>";
|
list += "<tr><td style=\"text-align: right\">" + (i + 1) + ".</td><td>" + scriptNames[i] + "</td></tr>";
|
||||||
|
|
||||||
list += "</table>";
|
list += "</table>";
|
||||||
|
|
||||||
liberator.commandline.echo(list, liberator.commandline.HL_NORMAL, liberator.commandline.FORCE_MULTILINE);
|
liberator.commandline.echo(list, liberator.commandline.HL_NORMAL, liberator.commandline.FORCE_MULTILINE);
|
||||||
},
|
},
|
||||||
{ argCount: "0" });
|
{ argCount: "0" });
|
||||||
|
|||||||
Reference in New Issue
Block a user