fix(sidebar): fix static menu items after merge

pull/3/head
KostyaDanovsky 2016-01-13 18:33:20 +03:00
parent 8e8d542e07
commit b656e4d81e
1 changed files with 24 additions and 18 deletions

View File

@ -6,10 +6,16 @@
/** @ngInject */ /** @ngInject */
function sidebarService($state) { function sidebarService($state) {
var staticMenuItems = [{ var staticMenuItems = [ {
title: 'Login Page', title: 'Auth Pages',
icon: 'ion-log-out', icon: 'ion-log-out',
subMenu: [{
title: 'Sign In',
root: 'auth.html' root: 'auth.html'
}, {
title: 'Sign Up',
root: 'reg.html'
}]
}, { }, {
title: '404 Page', title: '404 Page',
icon: 'ion-document', icon: 'ion-document',