From e8f979f050689b8fbe1dcd0611923a36d483a7fd Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Sat, 29 Oct 2011 15:28:13 +0100 Subject: [PATCH] separate actions from song info --- server/djrandom/frontend/templates/index.html | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/server/djrandom/frontend/templates/index.html b/server/djrandom/frontend/templates/index.html index affc286..44502e4 100644 --- a/server/djrandom/frontend/templates/index.html +++ b/server/djrandom/frontend/templates/index.html @@ -83,28 +83,34 @@ $(document).ready(function() { <div id="songInfoDiv"> </div> - <div id="pllistDiv"> + <div id="metasongcontrols" class="buttonbox"> + <br/> <a id="pllistbtn">Playlists</a> + | <a id="lyricsbtn">Lyrics</a> + | <a id="wikibtn">Wikipedia</a> + | <a id="lastfmbtn">Song Info</a> + </div> + + <div id="pllistDiv"> <div id="pllist" style="display: none"></div> </div> <div id="lyricsDiv"> - <a id="lyricsbtn">Lyrics</a> <iframe id="lyrics" width="100%" height="300" style="display: none"> <p>Your browser does not support iframes.</p> </iframe> </div> <div id="wikiDiv"> - <a id="wikibtn">Wikipedia Author</a> - <iframe id="wikipedia" width="100%" height="300" style="display: none"> + <iframe id="wikipedia" width="100%" height="300" + style="display: none"> <p>Your browser does not support iframes.</p> </iframe> </div> <div id="lastfmDiv"> - <a id="lastfmbtn">LastFM Song Info</a> - <iframe id="lastfm" width="100%" height="300" style="display: none"> + <iframe id="lastfm" width="100%" height="300" + style="display: none"> <p>Your browser does not support iframes.</p> </iframe> </div> -- GitLab