Hi,
we had an issue with our application not starting on IE11.
Reason was a call to remove() from risc.js, which is not supported in IE11, see screen shot.
We solved it by adding the function to a custom js file:
Code:
// fix for IE 11
// Create Element.remove() function if not exist
if (!('remove' in Element.prototype)) {
Element.prototype.remove = function() {
if (this.parentNode) {
this.parentNode.removeChild(this);
}
};
}
Best regards
Frauke