1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-09 19:05:46 +01:00

Handle "gi" properly on frameset documents when no last focused element.

This commit is contained in:
Kris Maglione
2010-10-03 15:04:11 -04:00
parent 60df536305
commit 49d6841b0d
2 changed files with 16 additions and 10 deletions

View File

@@ -962,7 +962,7 @@ const array = Class("array", Array, {
},
array: ary,
toString: function () this.array.toString(),
concat: function () this.array.concat.apply(this.array, arguments),
concat: function () this.__noSuchMethod__("concat", Array.slice(arguments)),
filter: function () this.__noSuchMethod__("filter", Array.slice(arguments)),
map: function () this.__noSuchMethod__("map", Array.slice(arguments))
};