This commit is contained in:
McShelby 2024-04-19 06:38:17 +00:00
commit 8bedab3877
302 changed files with 7768 additions and 22047 deletions

View file

@ -31,7 +31,6 @@ var autoComplete = (function(){
if (el.attachEvent) el.attachEvent('on'+type, handler); else el.addEventListener(type, handler);
}
function removeEvent(el, type, handler){
// if (el.removeEventListener) not working in IE11
if (el.detachEvent) el.detachEvent('on'+type, handler); else el.removeEventListener(type, handler);
}
function live(elClass, event, cb, context){