Pony.fm/resources/assets/scripts/app/controllers/artists-list.coffee

13 lines
372 B
CoffeeScript
Raw Normal View History

2015-08-31 17:42:21 +02:00
window.pfm.preloaders['artists-list'] = [
2015-10-25 03:35:37 +01:00
'artists', '$state'
(artists, $state) ->
artists.fetchList($state.params.page, true)
2015-08-31 17:42:21 +02:00
]
angular.module('ponyfm').controller "artists-list", [
2015-10-25 03:35:37 +01:00
'$scope', 'artists', '$state'
($scope, artists, $state) ->
artists.fetchList($state.params.page).done (list) ->
$scope.artists = list.artists
]