Skip to content

Commit

Permalink
Switch isInteractive tag order for alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
nhunzaker committed Sep 3, 2016
1 parent 8fb7749 commit f07a542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderers/dom/client/eventPlugins/SimpleEventPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function getDictionaryKey(inst) {

function isInteractive(tag) {
return tag === 'button' || tag === 'input' ||
tag === 'textarea' || tag === 'select';
tag === 'select' || tag === 'textarea';
}

function shouldPreventMouseEvent(inst) {
Expand Down

0 comments on commit f07a542

Please sign in to comment.