navmenu.js 180 B

12345678910
  1. app.directive('navmenu',[function(){
  2. return {
  3. restrict: 'E',
  4. scope: {},
  5. templateUrl: 'app/views/navmenu.html',
  6. controller: function($scope){
  7. }
  8. }
  9. }])