diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2014-03-25 22:36:42 -0400 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2014-03-25 22:36:42 -0400 |
commit | 4da506408edc02607ac3827c7c09ab6a6c8cf0b8 (patch) | |
tree | 5c44d3914bd0967e252fd0c2adae331a729ff3b0 /www/js | |
parent | 1d91a7996a5ade0915cd340c5726baa3c0986e04 (diff) | |
download | html5ks-4da506408edc02607ac3827c7c09ab6a6c8cf0b8.tar.xz html5ks-4da506408edc02607ac3827c7c09ab6a6c8cf0b8.zip |
bleh
Diffstat (limited to 'www/js')
-rw-r--r-- | www/js/api.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/js/api.js b/www/js/api.js index 04d8c5a..b8c2f28 100644 --- a/www/js/api.js +++ b/www/js/api.js @@ -56,7 +56,7 @@ window.html5ks.api = { }; setTimeout(function () { - if (el.oncanplaythrough) { + if (el.src && el.oncanplaythrough) { console.warn("video not playing after 3 seconds"); el.oncanplaythrough(); } @@ -161,6 +161,7 @@ window.html5ks.api = { video.volume = html5ks.persistent.musicVolume; var done = function () { video.style.display = "none"; + video.onerror = null; video.src = ""; deferred.resolve(); }; |