mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
17 lines
507 B
CoffeeScript
17 lines
507 B
CoffeeScript
|
window.pfm.preloaders['artist'] = [
|
||
|
'artists', '$state'
|
||
|
(artists, $state) ->
|
||
|
artists.fetch $state.params.slug, true
|
||
|
]
|
||
|
|
||
|
angular.module('ponyfm').controller "artist", [
|
||
|
'$scope', 'artists', '$state', 'follow'
|
||
|
($scope, artists, $state, follow) ->
|
||
|
artists.fetch($state.params.slug)
|
||
|
.done (artistResponse) ->
|
||
|
$scope.artist = artistResponse.artist
|
||
|
|
||
|
$scope.toggleFollow = () ->
|
||
|
follow.toggle('artist', $scope.artist.id).then (res) ->
|
||
|
$scope.artist.user_data.is_following = res.is_followed
|
||
|
]
|