1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 19:37:59 +01:00

convert single quotes to double quotes

This commit is contained in:
Doug Kearns
2007-11-06 11:22:39 +00:00
parent e6a678257d
commit b204012556
15 changed files with 75 additions and 75 deletions

View File

@@ -175,8 +175,8 @@ vimperator.Buffer = function() //{{{
var result = doc.evaluate(expression, elem,
function lookupNamespaceURI(prefix) {
switch (prefix) {
case 'xhtml':
return 'http://www.w3.org/1999/xhtml';
case "xhtml":
return "http://www.w3.org/1999/xhtml";
default:
return null;
}
@@ -625,7 +625,7 @@ vimperator.Buffer = function() //{{{
if (!verbose)
{
var info = []; // tmp array for joining later
var file = window.content.document.location.pathname.split('/').pop() || "[No Name]";
var file = window.content.document.location.pathname.split("/").pop() || "[No Name]";
var title = window.content.document.title || "[No Title]";
if (pageSize[1])