Skip to content

Commit

Permalink
fixes #18965, preventDefault call with pointer events
Browse files Browse the repository at this point in the history
  • Loading branch information
nicknisi authored and dylans committed Feb 16, 2017
1 parent fff8d32 commit 309ca5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _HasDropDown.js
Expand Up @@ -110,7 +110,7 @@ define([
//
// Also, don't call preventDefault() on MSPointerDown event (on IE10) because that prevents the button
// from getting focus, and then the focus manager doesn't know what's going on (#17262)
if(e.type != "MSPointerDown" && e.type != "pointerdown"){
if(e.type != "MSPointerDown"){
e.preventDefault();
}

Expand Down

0 comments on commit 309ca5e

Please sign in to comment.