mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2024-12-26 09:59:18 +01:00
removed navbar
This commit is contained in:
parent
39c77c4333
commit
b94fa759e6
3 changed files with 0 additions and 16 deletions
|
@ -1,5 +0,0 @@
|
|||
app.controller( 'NavbarCtrl',
|
||||
[ '$scope',
|
||||
function( $scope ) {
|
||||
$scope.items = [ 'Balance' ];
|
||||
} ] );
|
|
@ -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'
|
||||
}
|
||||
|
|
|
@ -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>
|
Loading…
Reference in a new issue