mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 21:47:59 +01:00
12 lines
No EOL
357 B
CoffeeScript
12 lines
No EOL
357 B
CoffeeScript
window.pfm.preloaders['artist-favourites'] = [
|
|
'artists', '$state'
|
|
(artists, $state) ->
|
|
artists.fetch $state.params.slug, true
|
|
]
|
|
|
|
angular.module('ponyfm').controller "artist-favourites", [
|
|
'$scope', 'artists', '$state'
|
|
($scope, artists, $state) ->
|
|
artists.fetch($state.params.slug).done (artistResponse) ->
|
|
$scope.artist = artistResponse.artist
|
|
] |