mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
15 lines
417 B
CoffeeScript
15 lines
417 B
CoffeeScript
window.pfm.preloaders['home'] = [
|
|
'dashboard'
|
|
(dashboard) -> dashboard.refresh(true)
|
|
]
|
|
|
|
angular.module('ponyfm').controller "home", [
|
|
'$scope', 'dashboard'
|
|
($scope, dashboard) ->
|
|
$scope.recentTracks = null
|
|
$scope.popularTracks = null
|
|
|
|
dashboard.refresh().done (res) ->
|
|
$scope.recentTracks = res.recent_tracks
|
|
$scope.popularTracks = res.popular_tracks
|
|
]
|