1234567891011121314151617181920 |
- app.directive('navMenu',[function(){
- return {
- restrict: 'E',
- scope: {
- toggleMenu: '&',
- isActive: '&'
- },
- templateUrl: 'app/views/nav-menu.html',
- controller: function($scope,$location){
- $scope.isActive = function(linkPath){
- if(linkPath == $location.path()){
- return true;
- } else{
- return false;
- }
- }
- }
- }
- }])
|