mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-04 04:36:04 +02:00
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
angular.module('rallly')
|
|
.controller('NavigationCtrl', function($scope, $location){
|
|
$scope.isActive = function(path) {
|
|
if ($location.path() == path) {
|
|
return true;
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
})
|