mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 01:57:58 +01:00
Use the RegExp global function rather than calling the constructor.
This commit is contained in:
@@ -1003,7 +1003,7 @@ function QuickMarks() //{{{
|
||||
|
||||
remove: function remove(filter)
|
||||
{
|
||||
var pattern = new RegExp("[" + filter.replace(/\s+/g, "") + "]");
|
||||
var pattern = RegExp("[" + filter.replace(/\s+/g, "") + "]");
|
||||
|
||||
for (let [qmark,] in qmarks)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user