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

convert single quotes to double quotes

This commit is contained in:
Doug Kearns
2007-11-09 11:46:40 +00:00
parent d97b2bf942
commit 9dc9b7e49c
14 changed files with 95 additions and 95 deletions

View File

@@ -93,7 +93,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