diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-08-23 16:57:52 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-08-23 16:57:52 +0200 |
commit | c8754366695abe10364963f1fe0c82dad5987102 (patch) | |
tree | 7d1e6067cfadfbad0a711fc20c3bbe6625ef1e74 /static/player.js | |
parent | d4394a532978e34176b886048b2f9f263b9fdcbb (diff) |
Added album remove buttons to song queue.
Diffstat (limited to 'static/player.js')
-rw-r--r-- | static/player.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/player.js b/static/player.js index 882b5ca..3f98dce 100644 --- a/static/player.js +++ b/static/player.js @@ -191,9 +191,9 @@ function event_handler(event) { if(li == playlist.current) a.onclick(); else - a.setAttribute('class', ''); + a.setAttribute('class', 'song'); } else { - a.setAttribute('class', 'file-recoding'); + a.setAttribute('class', 'song file-recoding'); } } break; |