removed navbar

This commit is contained in:
Gwenhael Le Moine 2014-11-08 17:40:30 +01:00
parent 39c77c4333
commit b94fa759e6
3 changed files with 0 additions and 16 deletions

View file

@ -1,5 +0,0 @@
app.controller( 'NavbarCtrl',
[ '$scope',
function( $scope ) {
$scope.items = [ 'Balance' ];
} ] );

View file

@ -13,10 +13,6 @@ app.config( [ '$stateProvider', '$urlRouterProvider',
url: '',
controller: 'AppCtrl',
views: {
'navbar': {
templateUrl: 'js/templates/navbar.tpl.html',
controller: 'NavbarCtrl'
},
'main': {
templateUrl: 'js/templates/main.tpl.html'
}

View file

@ -1,7 +0,0 @@
<header>
<ul>
<li ng-repeat="item in items" ui-sref-active="navbar-active">
<a ui-sref="app.{{ item | lowercase }}">{{ item }}</a>
</li>
</ul>
</header>