diff --git a/src/howler.core.js b/src/howler.core.js index 89df0a6e..8c53f1cc 100644 --- a/src/howler.core.js +++ b/src/howler.core.js @@ -332,11 +332,13 @@ self.mobileAutoEnable = false; // Remove the touch start listener. + document.removeEventListener('touchstart', unlock, true); document.removeEventListener('touchend', unlock, true); }; }; // Setup a touch start listener to attempt an unlock in. + document.addEventListener('touchstart', unlock, true); document.addEventListener('touchend', unlock, true); return self;