We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e1cb20 commit 0323af9Copy full SHA for 0323af9
src/howler.core.js
@@ -917,6 +917,7 @@
917
node._unlocked = true;
918
if (!internal) {
919
self._emit('play', sound._id);
920
+ } else {
921
self._loadQueue();
922
}
923
})
@@ -933,7 +934,6 @@
933
934
self._playLock = false;
935
setParams();
936
- self._loadQueue();
937
938
939
// Setting rate before playing won't work in IE, so we set it again here.
@@ -1648,12 +1648,12 @@
1648
1649
// Seek and emit when ready.
1650
var seekAndEmit = function() {
1651
- self._emit('seek', id);
1652
-
1653
// Restart the playback if the sound was playing.
1654
if (playing) {
1655
self.play(id, true);
1656
+
+ self._emit('seek', id);
1657
};
1658
1659
// Wait for the play lock to be unset before emitting (HTML5 Audio).
0 commit comments