mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 21:47:59 +01:00
16 lines
No EOL
534 B
CoffeeScript
16 lines
No EOL
534 B
CoffeeScript
angular.module('ponyfm').controller "application", [
|
|
'$scope', 'auth', '$location', 'upload', '$state', '$stateParams', 'taxonomies'
|
|
($scope, auth, $location, upload, $state, $stateParams, taxonomies) ->
|
|
$scope.auth = auth.data
|
|
$scope.$state = $state
|
|
$scope.$stateParams = $stateParams
|
|
|
|
$scope.logout = () ->
|
|
auth.logout().done -> location.reload()
|
|
|
|
$scope.isActive = (loc) -> $location.path() == loc
|
|
$scope.$on '$viewContentLoaded', () -> window.handleResize()
|
|
|
|
# Show loading screen here?
|
|
taxonomies.refresh()
|
|
] |