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