mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
10 lines
249 B
CoffeeScript
10 lines
249 B
CoffeeScript
|
window.pfm.preloaders['artist-profile'] = [
|
||
|
'artists', '$state'
|
||
|
(artists, $state) ->
|
||
|
artists.fetch $state.params.slug, true
|
||
|
]
|
||
|
|
||
|
angular.module('ponyfm').controller "artist-profile", [
|
||
|
'$scope', 'artists', '$state'
|
||
|
($scope, artists, $state) ->
|
||
|
]
|