1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-17 16:55:46 +01:00

Clear highlighting on page unload, etc.

This commit is contained in:
Kris Maglione
2009-11-13 19:17:34 -05:00
parent a9f8e825b9
commit 00697620ca
5 changed files with 80 additions and 13 deletions

View File

@@ -979,7 +979,7 @@ const Hints = Module("hints", {
if (typeof a[2] == "string")
a[3] = function (chr) String.fromCharCode(this[2].charCodeAt(0) + chr - this[0])
else
a[3] = function (chr) this[2][(chr - this[0]) % this[3].length];
a[3] = function (chr) this[2][(chr - this[0]) % this[2].length];
return a;
});