Pony.fm/public/scripts/app/controllers/tracks.coffee
2013-07-28 16:51:35 -05:00

12 lines
No EOL
253 B
CoffeeScript

angular.module('ponyfm').controller "tracks", [
'$scope'
($scope) ->
$scope.recentTracks = null
$scope.refresh = () ->
$.getJSON('/api/web/tracks/recent')
.done (res) -> $scope.$apply ->
$scope.recentTracks = res
$scope.refresh()
]