diff options
Diffstat (limited to 'static/script.js')
-rw-r--r-- | static/script.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/static/script.js b/static/script.js index 21e01d0..1a10f88 100644 --- a/static/script.js +++ b/static/script.js @@ -76,13 +76,14 @@ function pause(yid) { if (current_id != yid) return player.pauseVideo(); - showPlay(yid) + showPlay(yid); } function stop(yid) { if (current_id != yid) return player.stopVideo(); - showPlay(yid) + showPlay(yid); + drawBar(yid); } function showPlay(yid) { |