1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/public/views/transport.ejs
2013-12-05 16:40:51 +00:00

11 lines
320 B
Plaintext

<nav>
<button data-command="previous">previous</button>
<% if (status.attr('state') == 'play') { %>
<button data-command="pause">pause</button>
<% } else { %>
<button data-command="play">play</button>
<% } %>
<button data-command="stop">stop</button>
<button data-command="next">next</button>
</nav>