1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 08:07:59 +01:00

Fix a util.evaluateXPath invocation invalidated by revision 758a3a31518f.

This commit is contained in:
Štěpán Němec
2011-01-21 20:54:07 +01:00
parent e57d6f0b4a
commit 38e1ffa8a1

View File

@@ -301,7 +301,7 @@ var Hints = Module("hints", {
let baseNodeAbsolute = util.xmlToDom(<span highlight="Hint" style="display: none"/>, doc);
let mode = this._hintMode;
let res = util.evaluateXPath(mode.xpath, doc, null, true);
let res = util.evaluateXPath(mode.xpath, doc, true);
let start = this._pageHints.length;
for (let elem in res) {