In Angular 4.2.4 (Angular-CLI 1.1.3), IE11 I get SCRIPT1002: Syntax error
and SCRIPT5007: Unable to get property 'call' of undefined or null reference
. I have my polyfills in and I would have assumed that Webpack and Angular-CLI would have done the rest. What am I missing here?
Unable to get property 'call' of undefined or null reference
says after it: bootstrap 50034e0a1f93dabcb117 (54, 1)
with no indication of a real filename. And Syntax error
says it's in vendor.bundle.js (63117,26)
, which looks like:
window.setTimeout(() => {
window.removeEventListener('click', suppressClick, true);
}, 0);
Update: Should have been more obvious to me before, but this looks like ES6 code, and it should be compiling down to ES5.