Files
roboto-promoto/app/scripts/controllers/navbar.js
Fergal Moran d49dc8b3bf Initial Commit
2014-03-20 11:32:56 +00:00

24 lines
473 B
JavaScript

'use strict';
angular.module('robotoApp')
.controller('NavbarCtrl', function ($scope, $location, Auth) {
$scope.menu = [{
'title': 'Home',
'link': '/'
}, {
'title': 'Settings',
'link': '/settings'
}];
$scope.logout = function() {
Auth.logout()
.then(function() {
$location.path('/login');
});
};
$scope.isActive = function(route) {
return route === $location.path();
};
});