mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
Change 'controls' to 'transport'.
This commit is contained in:
parent
71e689a880
commit
280564c945
@ -6,12 +6,14 @@ App.QueueRoute = Ember.Route.extend({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
App.ControlsController = Ember.Controller.extend({
|
App.QueueController = Ember.ArrayController.extend();
|
||||||
|
|
||||||
|
App.TransportController = Ember.Controller.extend({
|
||||||
actions: {
|
actions: {
|
||||||
previous: function() { return Ember.$.ajax('/api/control/previous', { type: 'PUT' }); },
|
sendControl: function(control) {
|
||||||
play: function() { return Ember.$.ajax('/api/control/play', { type: 'PUT' }); },
|
Ember.$.ajax('/api/control/' + control, { type: 'PUT' });
|
||||||
pause: function() { return Ember.$.ajax('/api/control/pause', { type: 'PUT' }); },
|
}
|
||||||
stop: function() { return Ember.$.ajax('/api/control/stop', { type: 'PUT' }); },
|
|
||||||
next: function() { return Ember.$.ajax('/api/control/next', { type: 'PUT' }); }
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
App.Song = DS.Model.extend();
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
<script type="text/x-handlebars" data-template-name="application">
|
<script type="text/x-handlebars" data-template-name="application">
|
||||||
<h1>MPD Client</h1>
|
<h1>MPD Client</h1>
|
||||||
{{ outlet }}
|
{{ outlet }}
|
||||||
{{ render "controls" }}
|
{{ render "transport" }}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/x-handlebars" data-template-name="queue">
|
<script type="text/x-handlebars" data-template-name="queue">
|
||||||
@ -24,13 +24,13 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/x-handlebars" data-template-name="controls">
|
<script type="text/x-handlebars" data-template-name="transport">
|
||||||
<div id="controls">
|
<div id="controls">
|
||||||
<button {{ action "previous" }}>Previous</button>
|
<button {{ action "sendControl" "previous" }}>previous</button>
|
||||||
<button {{ action "play" }}>Play</button>
|
<button {{ action "sendControl" "play" }}>play</button>
|
||||||
<button {{ action "pause" }}>Pause</button>
|
<button {{ action "sendControl" "pause" }}>pause</button>
|
||||||
<button {{ action "stop" }}>Stop</button>
|
<button {{ action "sendControl" "stop" }}>stop</button>
|
||||||
<button {{ action "next" }}>Next</button>
|
<button {{ action "sendControl" "next" }}>next</button>
|
||||||
</div>
|
</div>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user