Skip to content

Commit c35e032

Browse files
committed
Handle some non-standard events
1 parent 1a0904e commit c35e032

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

svg-loader.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ const getAllEventNames = () => {
6565
// SVG <animate> events
6666
DOM_EVENTS.push('onbegin', 'onend', 'onrepeat');
6767

68+
// Some non-standard events, just in case the browser is handling them
69+
DOM_EVENTS.push('onfocusin', 'onfocusout', 'onbounce', 'onfinish', 'onshow');
70+
6871
return DOM_EVENTS;
6972
};
7073

0 commit comments

Comments
 (0)