Skip to content

Commit 25f2253

Browse files
Using manager.isLocked instead of removed checkTouchLocked method for seek property
1 parent 216bde9 commit 25f2253

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/sound/html5/HTML5AudioSound.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ Object.defineProperty(HTML5AudioSound.prototype, 'seek', {
348348
}
349349
},
350350
set: function (value) {
351-
if (this.checkTouchLocked('property', 'seek', value)) {
351+
if (this.manager.isLocked(this, 'seek', value)) {
352352
return;
353353
}
354354
if (this.startTime > 0) {

0 commit comments

Comments
 (0)