1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 16:42:26 +01:00

fix typo in removeHints

This commit is contained in:
Doug Kearns
2008-11-27 07:03:32 +00:00
parent 82ef520fd5
commit 81e4be0aee

View File

@@ -277,7 +277,7 @@ function Hints() //{{{
for (let i in util.range(start, end + 1)) for (let i in util.range(start, end + 1))
{ {
let hint = pageHints[i]; let hint = pageHints[i];
if (!timeout || hint[ELEM] != firstHint) if (!timeout || hint[ELEM] != firstElem)
hint[ELEM].removeAttributeNS(NS.uri, "highlight"); hint[ELEM].removeAttributeNS(NS.uri, "highlight");
} }