Don't bind context for app functions, they expect their own.

This commit is contained in:
nathangray 2020-05-15 11:15:30 -06:00
parent 242d435252
commit 52eb5ca8e0

View File

@ -140,7 +140,7 @@
}
}
if (typeof parent[existing_func] === "function") {
return parent[existing_func].bind(context);
parent[existing_func];
}
}