1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 04:27:58 +01:00

Fix '' for a subset of cases.

This commit is contained in:
Kris Maglione
2011-01-13 12:22:46 -05:00
parent 0de4c844ef
commit 77e8bc5f65
5 changed files with 8 additions and 3 deletions

View File

@@ -201,7 +201,7 @@ var Marks = Module("marks", {
(tab ? ", tab: " + tabs.index(tab) : "");
},
isLocalMark: function isLocalMark(mark) /^[a-z]$/.test(mark),
isLocalMark: function isLocalMark(mark) /^[a-z`']$/.test(mark),
isURLMark: function isURLMark(mark) /^[A-Z]$/.test(mark)
}, {