Skip to content

Commit

Permalink
Merge branch 'master' into useeffect-reverse-depth-ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
developit authored Dec 7, 2021
2 parents 6e58ab5 + 70bc35a commit a496224
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions compat/src/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ options.vnode = vnode => {
!onChangeInputType(props.type)
) {
i = 'oninput';
} else if (/^onfocus$/i.test(i)) {
i = 'onfocusin';
} else if (/^onblur$/i.test(i)) {
i = 'onfocusout';
} else if (/^on(Ani|Tra|Tou|BeforeInp)/.test(i)) {
i = i.toLowerCase();
} else if (nonCustomElement && CAMEL_PROPS.test(i)) {
Expand Down

0 comments on commit a496224

Please sign in to comment.