Calling onLoad directly if device sound is locked since we are skipping actual loading

This commit is contained in:
Pavle Goloskokovic 2018-01-17 14:07:50 +01:00
parent ae36cf5729
commit e75731df87

View file

@ -97,6 +97,11 @@ var HTML5AudioFile = new Class({
audio.load();
}
}
if (touchLocked)
{
this.onLoad();
}
}
});