diff options
author | raylu <raylu@mixpanel.com> | 2011-08-01 02:54:26 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-08-01 02:54:26 -0700 |
commit | 55f8d5a0d4f4cf2ee74de9a349f4c437747bf079 (patch) | |
tree | 0679acd69b6a4abf1f412cc783c94bf846b16f46 /static/script.js | |
parent | f9803a3bbfb3e730213825d6dc332b7c31321330 (diff) | |
download | audioaxis-55f8d5a0d4f4cf2ee74de9a349f4c437747bf079.tar.xz |
some style details
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) { |