make regex case insensitive
This commit is contained in:
parent
736288a85b
commit
5e6e76dfc1
@ -43,7 +43,7 @@ define([
|
|||||||
|
|
||||||
var removeListeners = function (root) {
|
var removeListeners = function (root) {
|
||||||
slice(root.attributes).map(function (attr) {
|
slice(root.attributes).map(function (attr) {
|
||||||
if (/^on/.test(attr.name)) {
|
if (/^on/i.test(attr.name)) {
|
||||||
root.attributes.removeNamedItem(attr.name);
|
root.attributes.removeNamedItem(attr.name);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user