From 17fdfa80ec9c5efa162f2b4acbf9d49c021ab132 Mon Sep 17 00:00:00 2001 From: mhartington Date: Mon, 10 Oct 2016 17:35:07 -0400 Subject: [PATCH] docs(): fix broken links --- src/components/nav/nav.ts | 6 +++--- src/components/tabs/tabs.ts | 4 ++-- src/navigation/nav-controller.ts | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/nav/nav.ts b/src/components/nav/nav.ts index 218c737301..a27c6d5646 100644 --- a/src/components/nav/nav.ts +++ b/src/components/nav/nav.ts @@ -15,10 +15,10 @@ import { ViewController } from '../../navigation/view-controller'; * @name Nav * @description * - * `ion-nav` is the declarative component for a [NavController](../NavController/). + * `ion-nav` is the declarative component for a [NavController](/docs/v2/api/navigation/NavController/). * - * For more information on using nav controllers like Nav or [Tab](../../Tabs/Tab/), - * take a look at the [NavController API Docs](../NavController/). + * For more information on using nav controllers like Nav or [Tab](/docs/v2/api/components/tabs/Tabs/), + * take a look at the [NavController API Docs](/docs/v2/api/navigation/NavController/). * * * @usage diff --git a/src/components/tabs/tabs.ts b/src/components/tabs/tabs.ts index 25668c33ce..c4c017ee53 100644 --- a/src/components/tabs/tabs.ts +++ b/src/components/tabs/tabs.ts @@ -21,10 +21,10 @@ import { ViewController } from '../../navigation/view-controller'; * Tabs make it easy to navigate between different pages or functional * aspects of an app. The Tabs component, written as ``, is * a container of individual [Tab](../Tab/) components. Each individual `ion-tab` - * is a declarative component for a [NavController](../../nav/NavController/) + * is a declarative component for a [NavController](/docs/v2/api/components/modal/ModalController/) * * For more information on using nav controllers like Tab or [Nav](../../nav/Nav/), - * take a look at the [NavController API Docs](../../nav/NavController/). + * take a look at the [NavController API Docs](/docs/v2/api/components/modal/ModalController/). * * ### Placement * diff --git a/src/navigation/nav-controller.ts b/src/navigation/nav-controller.ts index 407be3f6da..0cd2e2bc21 100644 --- a/src/navigation/nav-controller.ts +++ b/src/navigation/nav-controller.ts @@ -22,7 +22,7 @@ import { ViewController } from './view-controller'; * navigation stack causes the new page to be animated in, while [popping](#pop) * the current page will navigate to the previous page in the stack. * - * Unless you are using a directive like [NavPush](../NavPush/), or need a + * Unless you are using a directive like [NavPush](docs/v2/api/components/nav/NavPush/), or need a * specific NavController, most times you will inject and use a reference to the * nearest NavController to manipulate the navigation stack. *