modules/util/trigger_event.js (
7
lines of code) (
raw
):
export function utilTriggerEvent(target, type) { target.each(function() { var evt = document.createEvent('HTMLEvents'); evt.initEvent(type, true, true); this.dispatchEvent(evt); }); }