mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 06:37:59 +01:00
Define option getters to return Optionhints.jsvalues rather than #value.
This commit is contained in:
@@ -532,8 +532,7 @@ const Buffer = Module("buffer", {
|
||||
* RegExp.
|
||||
*/
|
||||
followDocumentRelationship: function (rel) {
|
||||
let regexes = options.get(rel + "pattern").values
|
||||
.map(function (re) RegExp(re, "i"));
|
||||
let regexes = options[rel + "pattern"].map(function (re) RegExp(re, "i"));
|
||||
|
||||
function followFrame(frame) {
|
||||
function iter(elems) {
|
||||
|
||||
Reference in New Issue
Block a user