react-binding icon indicating copy to clipboard operation
react-binding copied to clipboard

Broken in IE8

Open max-zelinski opened this issue 9 years ago • 2 comments

Doesnt work in IE8 with shim/shams due to:

Object.defineProperty(PathObjectBinding.prototype, "requestChange", {
        get: function () {
            var _this = this;
            return function (value) {
                _this.value = value;
            };
        },
        enumerable: true,
        configurable: true
    });

Defining accessors (get or set) for non DOM elements is not supported under IE8 and cannot be emulated :(

max-zelinski avatar Jan 06 '16 14:01 max-zelinski

I thinks this isn't bug, just stop support IE8.

Areks avatar Apr 01 '16 11:04 Areks

sorry, for big delay -> i upgraded browserify to generate react-binding -> try version 0.8.0

rsamec avatar Jan 01 '17 16:01 rsamec