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

Fix 'hinttags'.

This commit is contained in:
Kris Maglione
2009-06-28 23:57:24 -04:00
parent 645c446470
commit 3628ff8803

View File

@@ -716,7 +716,7 @@ util.Array = function Array_(ary) {
return util.Array(res);
return res;
},
concat: function() Array.concat.apply(this.__proto__, arguments),
concat: function() [].concat.apply(this.__proto__, arguments),
map: function() this.__noSuchMethod__("map", Array.slice(arguments)),
};
return obj;