1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-08 11:15:52 +01:00
This commit is contained in:
Kris Maglione
2011-07-16 18:54:40 -04:00
parent 9002a78d14
commit 389c61adbd

View File

@@ -437,7 +437,7 @@ function set() {
Object.keys(Set).forEach(function (meth) {
set[meth] = function proxy() {
deprecated.warn(proxy, "set." + meth, "Set." + meth);
return Set[meth].apply(this, arguments);
return Set[meth].apply(Set, arguments);
};
});