docs(): fix broken links

This commit is contained in:
mhartington
2016-10-10 17:35:07 -04:00
parent 8c3433f6e7
commit 17fdfa80ec
3 changed files with 6 additions and 6 deletions

View File

@ -15,10 +15,10 @@ import { ViewController } from '../../navigation/view-controller';
* @name Nav * @name Nav
* @description * @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/), * 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](../NavController/). * take a look at the [NavController API Docs](/docs/v2/api/navigation/NavController/).
* *
* *
* @usage * @usage

View File

@ -21,10 +21,10 @@ import { ViewController } from '../../navigation/view-controller';
* Tabs make it easy to navigate between different pages or functional * Tabs make it easy to navigate between different pages or functional
* aspects of an app. The Tabs component, written as `<ion-tabs>`, is * aspects of an app. The Tabs component, written as `<ion-tabs>`, is
* a container of individual [Tab](../Tab/) components. Each individual `ion-tab` * 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/), * 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 * ### Placement
* *

View File

@ -22,7 +22,7 @@ import { ViewController } from './view-controller';
* navigation stack causes the new page to be animated in, while [popping](#pop) * 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. * 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 * specific NavController, most times you will inject and use a reference to the
* nearest NavController to manipulate the navigation stack. * nearest NavController to manipulate the navigation stack.
* *