feat(menu): 'hidden' menu attribute to hide the link from the menu but keep other related features in place (page title, breadcrumbs). Fix #151

(cherry picked from commit a3b7fa1)
This commit is contained in:
nixa 2016-08-22 23:24:43 +03:00
parent 7a82fce24f
commit 9178b6014b
2 changed files with 3 additions and 2 deletions

View file

@ -34,7 +34,8 @@ All menu items are located inside the `src/app/app.routes.ts` file. Each route i
icon: 'ion-android-home', // menu icon
selected: false, // selected or not
expanded: false, // expanded or not (if item has children)
order: 0 // item order in the menu list
order: 0, // item order in the menu list,
hidden: true // hide menu item from a list but keep related features (breadcrums, page title)
}
}
}