You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since IE10 does not support setPrototypeOf, prototype properties are copied and arenot writable.
As a workaround I changed Object.defineProperty(proxy, k, {get: getter.bind(target, k)});
to Object.defineProperty(proxy, k, {get: getter.bind(target, k)}, set: setter.bind(target, k));
any reason why you don't allow setting prototype properties?
The text was updated successfully, but these errors were encountered:
madmed88
changed the title
Can not set prototype properties in IE11
Can not set prototype properties in IE10
Jun 16, 2016
Since IE10 does not support setPrototypeOf, prototype properties are copied and arenot writable.
As a workaround I changed
Object.defineProperty(proxy, k, {get: getter.bind(target, k)});
to
Object.defineProperty(proxy, k, {get: getter.bind(target, k)}, set: setter.bind(target, k));
any reason why you don't allow setting prototype properties?
The text was updated successfully, but these errors were encountered: