oliviertassinari/react-event-listener

Drop IE8 support

oliviertassinari opened this issue · 0 comments

Material-UI only supports IE11 and above. We can remove the following logic and save space.

// IE8+ Support
target.attachEvent(`on${eventName}`, () => {
callback.call(target);
});