mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
export function triggerEvent(target, type) {
|
|
target.each(function() {
|
|
var evt = document.createEvent('HTMLEvents');
|
|
evt.initEvent(type, true, true);
|
|
this.dispatchEvent(evt);
|
|
});
|
|
}
|