Removed checkTouchLocked from HTML5AudioSound class

This commit is contained in:
Pavle Goloskokovic 2018-01-17 19:11:50 +01:00
parent da56f97580
commit cee22b158c

View file

@ -252,19 +252,6 @@ var HTML5AudioSound = new Class({
if (this.audio) {
this.audio.playbackRate = this.totalRate;
}
},
checkTouchLocked: function (type, name, value) {
if (this.manager.touchLocked) {
this.touchLockedActionQueue.push({
sound: this,
type: type,
name: name,
value: value,
time: window.performance.now()
});
return true;
}
return false;
}
});
/**