Closed
Description
this.updateElement = function (element, options) {
// gets the index of the element to update based on id
var index = elements.findIndex(function (el) {
return el.id === element.id;
});
Object doesn't support property or method 'findIndex'
When it runs the updateElement function in IE11 for me I am receiving the error above.
and that breaks the entire site for me.