diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2012-03-13 23:22:17 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2012-03-13 23:22:17 +0100 |
commit | b3f50be6ff9c72ed877f42e896c532b994cc49d1 (patch) | |
tree | 56e079a1ab2ba7baa49f62b2a64e51f62d2c7f28 /static/index.html | |
parent | d7a57c76f6f327f4a5520a437b2d17a02bc58a99 (diff) |
Implemented playlist item deletion.
Diffstat (limited to 'static/index.html')
-rw-r--r-- | static/index.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/static/index.html b/static/index.html index 587b0b2..c337499 100644 --- a/static/index.html +++ b/static/index.html @@ -34,8 +34,16 @@ </ul> </div> <div id="playlist-tab"> - <ul id="playlist"> - </ul> + <table id="playlist"> + <thead> + <tr> + <th>Name</th> + <th> </th> + </tr> + </thead> + <tbody> + </tbody> + </table> </div> </div> </div> |