mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 21:47:59 +01:00
12 lines
No EOL
253 B
CoffeeScript
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()
|
|
] |