mirror of
https://github.com/photonstorm/phaser
synced 2024-12-17 16:43:30 +00:00
Using manager.isLocked instead of removed checkTouchLocked method for seek property
This commit is contained in:
parent
216bde9577
commit
25f22533fd
1 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ Object.defineProperty(HTML5AudioSound.prototype, 'seek', {
|
|||
}
|
||||
},
|
||||
set: function (value) {
|
||||
if (this.checkTouchLocked('property', 'seek', value)) {
|
||||
if (this.manager.isLocked(this, 'seek', value)) {
|
||||
return;
|
||||
}
|
||||
if (this.startTime > 0) {
|
||||
|
|
Loading…
Reference in a new issue