make regex case insensitive

This commit is contained in:
ansuz 2017-08-14 14:41:23 +02:00
parent 736288a85b
commit 5e6e76dfc1

View file

@ -43,7 +43,7 @@ define([
var removeListeners = function (root) {
slice(root.attributes).map(function (attr) {
if (/^on/.test(attr.name)) {
if (/^on/i.test(attr.name)) {
root.attributes.removeNamedItem(attr.name);
}
});