Remove PointerEvents debug message when useMouseEvents is enabled

This commit is contained in:
Francisco Hodge 2019-03-07 21:26:22 -05:00
parent 19f6ac9ac1
commit 96206d1b47

View File

@ -730,7 +730,8 @@ class SimpleKeyboard {
*/ */
if ( if (
this.utilities.pointerEventsSupported() && this.utilities.pointerEventsSupported() &&
!this.options.useTouchEvents !this.options.useTouchEvents &&
!this.options.useMouseEvents
) { ) {
if (this.options.debug) { if (this.options.debug) {
console.log("Using PointerEvents as it is supported by this browser"); console.log("Using PointerEvents as it is supported by this browser");