diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/index.html | 3 | ||||
-rw-r--r-- | static/sound.js | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/static/index.html b/static/index.html index 6b7b4dc..b320435 100644 --- a/static/index.html +++ b/static/index.html @@ -18,11 +18,10 @@ </head> <body> <div id="content"> - <span id="status"> - </span> <div id="control"> <a href="javascript:play()"><img src="/static/icons/control_play_blue.png" alt="Play" /></a> <a href="javascript:pause()"><img src="/static/icons/control_pause_blue.png" alt="Play" /></a> + <span id="status"></span> <div id="progress"></div> </div> <div id="tabs"> diff --git a/static/sound.js b/static/sound.js index 85386ce..7dbb42a 100644 --- a/static/sound.js +++ b/static/sound.js @@ -47,6 +47,7 @@ function playsound(model) { if(next) { playsound(next, $('#cid-' + next.cid)); } else { + $('#status').text(''); sound.stop(); sound.destruct(); sound = null; |