From 43cfea6ee09e63a5d80939f0c217d46ea729a3db Mon Sep 17 00:00:00 2001 From: Basti Be Date: Fri, 23 Sep 2016 10:46:55 +0200 Subject: [PATCH] docs(menu): fixed broken links for navbar Closes #8184 Also renamed "NavBar" to "Navbar" to be consistent with the rest of the documentation. --- src/components/menu/menu.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/menu/menu.ts b/src/components/menu/menu.ts index 892374ca87..ace778c312 100644 --- a/src/components/menu/menu.ts +++ b/src/components/menu/menu.ts @@ -43,7 +43,7 @@ import { GestureController } from '../../gestures/gesture-controller'; * * ### Navigation Bar Behavior * - * If a [MenuToggle](../MenuToggle) button is added to the [NavBar](../../nav/NavBar) of + * If a [MenuToggle](../MenuToggle) button is added to the [Navbar](../../navbar/Navbar) of * a page, the button will only appear when the page it's in is currently a root page. The * root page is the initial page loaded in the app, or a page that has been set as the root * using the [setRoot](../../nav/NavController/#setRoot) method on the [NavController](../../nav/NavController). @@ -56,9 +56,9 @@ import { GestureController } from '../../gestures/gesture-controller'; * * ### Persistent Menus * - * Persistent menus display the [MenuToggle](../MenuToggle) button in the [NavBar](../../nav/NavBar) + * Persistent menus display the [MenuToggle](../MenuToggle) button in the [Navbar](../../navbar/Navbar) * on all pages in the navigation stack. To make a menu persistent set `persistent` to `true` on the - * `` element. Note that this will only affect the `MenuToggle` button in the `NavBar` attached + * `` element. Note that this will only affect the `MenuToggle` button in the `Navbar` attached * to the `Menu` with `persistent` set to true, any other `MenuToggle` buttons will not be affected. * *