summaryrefslogtreecommitdiff
path: root/common/content/buffer.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2010-10-11 04:40:07 -0400
committerKris Maglione <maglione.k@gmail.com>2010-10-11 04:40:07 -0400
commitb2a70aea711acd88e56a1113c03d91c8c69c849f (patch)
treed5f74b6de5b92499cc4a272a38f08ea98f9d8d9a /common/content/buffer.js
parente95bb3708ce02047502fdf4d4584d23089badabf (diff)
downloadpentadactyl-b2a70aea711acd88e56a1113c03d91c8c69c849f.tar.gz
Return a sane format from Option#value, rename {join,parse}Values to stringify/parse (c.f. JSON), and deprecate Option#values.
Diffstat (limited to 'common/content/buffer.js')
-rw-r--r--common/content/buffer.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/buffer.js b/common/content/buffer.js
index 6bfc8a69..83632bdb 100644
--- a/common/content/buffer.js
+++ b/common/content/buffer.js
@@ -565,7 +565,7 @@ const Buffer = Module("buffer", {
return true;
}
- let res = util.evaluateXPath(options.get("hinttags").defaultValues, frame.document);
+ let res = util.evaluateXPath(options.get("hinttags").defaultValue, frame.document);
for (let [, regex] in Iterator(regexes)) {
for (let i in util.range(res.snapshotLength, 0, -1)) {
let elem = res.snapshotItem(i);