1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 15:22:26 +01:00

whitespace fixes

This commit is contained in:
Doug Kearns
2008-06-02 18:11:47 +00:00
parent e49aed94df
commit 973f3e5ca3
15 changed files with 87 additions and 87 deletions

View File

@@ -233,7 +233,7 @@ liberator.Buffer = function () //{{{
liberator.mappings.add(modes, ["gg", "<Home>"],
"Goto the top of the document",
function (count) { liberator.buffer.scrollToPercentile(count > 0 ? count : 0); },
function (count) { liberator.buffer.scrollToPercentile(count > 0 ? count : 0); },
{ flags: liberator.Mappings.flags.COUNT });
liberator.mappings.add(modes, ["G", "<End>"],
@@ -671,7 +671,7 @@ liberator.Buffer = function () //{{{
saveLink: function (elem, skipPrompt)
{
var doc = elem.ownerDocument;
var url = makeURLAbsolute(elem.baseURI, elem.href);
var url = makeURLAbsolute(elem.baseURI, elem.href);
var text = elem.textContent;
try
@@ -1084,7 +1084,7 @@ liberator.Buffer = function () //{{{
}
pageGeneral.push(["Mime-Type", content.document.contentType]);
pageGeneral.push(["Encoding", content.document.characterSet]);
pageGeneral.push(["Encoding", content.document.characterSet]);
pageGeneral.push(["Compatibility", content.document.compatMode == "BackCompat" ? "Quirks Mode" : "Full/Almost Standards Mode"]);
if (lastModVerbose)
pageGeneral.push(["Last Modified", lastModVerbose]);