Browse Source

Fix undefined reference in js

pull/17/head
Gabe Kangas 5 years ago
parent
commit
7bdc9052d3
  1. 4
      webroot/js/player/player.js

4
webroot/js/player/player.js

@ -45,7 +45,9 @@ function setupPlayerEventHandlers() {
// }) // })
// //
player.on('playing', function (e) { player.on('playing', function (e) {
clearTimeout(playerRestartTimer); if (playerRestartTimer) {
clearTimeout(playerRestartTimer);
}
}) })
// //
// player.on('waiting', function (e) { // player.on('waiting', function (e) {

Loading…
Cancel
Save