1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-23 02:55:46 +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

@@ -665,7 +665,7 @@ vimperator.Marks = function() //{{{
}
else
{
var pattern = new RegExp("[" + filter.replace(/\s+/g, '') + "]");
var pattern = new RegExp("[" + filter.replace(/\s+/g, "") + "]");
for (var mark in url_marks)
{
if (pattern.test(mark))
@@ -800,7 +800,7 @@ vimperator.QuickMarks = function() //{{{
this.remove = function(filter)
{
var pattern = new RegExp("[" + filter.replace(/\s+/g, '') + "]");
var pattern = new RegExp("[" + filter.replace(/\s+/g, "") + "]");
for (var qmark in qmarks)
{