diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 22:31:17 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 22:31:17 +0200 |
commit | 6aaa49d38620d2092f546cbb27f23da6f5e5e138 (patch) | |
tree | f56c8cf3360a44aca43dc05e0f97a423edce38b8 /apps/media/templates | |
parent | 5ecdd26902b7edd122a99de9286c8cdde8493185 (diff) | |
download | nextcloud-server-6aaa49d38620d2092f546cbb27f23da6f5e5e138.tar.gz nextcloud-server-6aaa49d38620d2092f546cbb27f23da6f5e5e138.zip |
more media player fixes
Diffstat (limited to 'apps/media/templates')
-rw-r--r-- | apps/media/templates/music.php | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/apps/media/templates/music.php b/apps/media/templates/music.php index 5fe11bdae30..5d0b0b6f0c4 100644 --- a/apps/media/templates/music.php +++ b/apps/media/templates/music.php @@ -17,15 +17,15 @@ </div> <div class="jp-current-time"></div> <div class="jp-duration"></div> - <div class='player' id='jp-player'></div> + <div class="player" id="jp-player"></div> </div> <div id="leftcontent"> -<table id='playlist'> +<table id="playlist"> <thead> <tr> - <th class='name'><input id='selectAll' type='checkbox'>Name</th> - <th class='artist'>Artist</th> + <th class="name"><input id="selectAll" type="checkbox">Name</th> + <th class="artist">Artist</th> </tr> </thead> <tbody> @@ -36,35 +36,35 @@ </tr> </tbody> <tfoot> - <tr class='template'> - <td class='name'> - <input type='checkbox'> + <tr class="template"> + <td class="name"> + <input type="checkbox"> <span></span> </td> - <td class='artist'></td> + <td class="artist"></td> </tr> </tfoot> </table> </div> <div id="rightcontent"> -<div id='scan'> - <p id='scancount' style='display:none'><span class='songCount'>0</span> Songs scanned</p> +<div id="scan"> + <p id="scancount" style="display:none"><span class="songCount">0</span> Songs scanned</p> <div id="scanprogressbar"></div> - <input type='button' class='start' value='Recan Collection'></input> - <input type='button' class='stop' style='display:none' value='Pause'></input> + <input type="button" class="start" value="Rescan Collection"></input> + <input type="button" class="stop" style="display:none" value="Pause"></input> </div> -<table id='collection'> +<table id="collection"> <thead> <th>Artist</th> <th>Album</th> <th>Title</th> </thead> <tbody> - <tr class='template'> - <td class='artist'><a/></td> - <td class='album'><a/></td> - <td class='title'><a/></td> + <tr class="template"> + <td class="artist"><a/></td> + <td class="album"><a/></td> + <td class="title"><a/></td> </tr> </tbody> </table> |