1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 13:17:58 +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

@@ -101,7 +101,7 @@ vimperator.util = {
var matches;
// strip each 'URL' - makes things simpler later on
urls[url] = urls[url].replace(/^\s+/, '').replace(/\s+$/, '');
urls[url] = urls[url].replace(/^\s+/, "").replace(/\s+$/, "");
// FIXME: not really that good (doesn't handle .. in the middle)
// check for ./ and ../ (or even .../) to go to a file in the upper directory