mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
18 lines
No EOL
561 B
CoffeeScript
18 lines
No EOL
561 B
CoffeeScript
window.pfm.preloaders['album'] = [
|
|
'albums', '$state', 'playlists'
|
|
(albums, $state, playlists) ->
|
|
$.when.all [albums.fetch $state.params.id, playlists.refreshOwned(true)]
|
|
]
|
|
|
|
angular.module('ponyfm').controller "album", [
|
|
'$scope', 'albums', '$state', 'playlists', 'auth'
|
|
($scope, albums, $state, playlists, auth) ->
|
|
albums.fetch($state.params.id).done (albumResponse) ->
|
|
$scope.album = albumResponse.album
|
|
|
|
$scope.playlists = []
|
|
|
|
if auth.data.isLogged
|
|
playlists.refreshOwned().done (lists) ->
|
|
$scope.playlists.push list for list in lists
|
|
] |