Pony.fm/resources/assets/scripts/app/controllers/artist-profile.coffee

11 lines
268 B
CoffeeScript
Raw Normal View History

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