ant-design/components/_util/triggerEvent.tsx

9 lines
247 B
TypeScript
Raw Normal View History

2017-11-22 12:06:49 +08:00
export default function triggerEvent(el: Element, type: string) {
2017-05-02 15:47:51 +08:00
if ('createEvent' in document) {
// modern browsers, IE9+
const e = document.createEvent('HTMLEvents');
e.initEvent(type, false, true);
el.dispatchEvent(e);
}
}