1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00

Removed some redundant files.

This commit is contained in:
Dan Barber 2014-01-10 17:48:28 +00:00
parent 900d6bad23
commit bbc81dacae
3 changed files with 0 additions and 30 deletions

View File

@ -1,13 +0,0 @@
<ol class="albums">
<% list(items, function(album) { %>
<li id="<%= album.attr('id') %>">
<%== can.route.link(album.attr('title'), {
page: 'library',
pane: pane + 1,
show: 'songs',
artist: album.attr('artist'),
album: album.attr('title')
}) %>
</li>
<% }) %>
</ol>

View File

@ -1,12 +0,0 @@
<ol class="artists">
<% list(items, function(artist) { %>
<li id="<%= artist.attr('id') %>">
<%== can.route.link(artist.attr('name'), {
page: 'library',
pane: pane + 1,
show: 'albums',
artist: artist.attr('name')
}) %>
</li>
<% }) %>
</ol>

View File

@ -1,5 +0,0 @@
<ul class="root">
<li><%== can.route.link('Artists', { page: 'library', show: 'artists', pane: pane + 1 }) %></li>
<li><%== can.route.link('Albums', { page: 'library', show: 'albums', pane: pane + 1 }) %></li>
<li><%== can.route.link('Songs', { page: 'library', show: 'songs', pane: pane + 1 }) %></li>
</ul>