diff --git a/ionic/components/nav/nav-controller.ts b/ionic/components/nav/nav-controller.ts index 9f2c3640ec..ba002c3e2d 100644 --- a/ionic/components/nav/nav-controller.ts +++ b/ionic/components/nav/nav-controller.ts @@ -91,16 +91,17 @@ import {ViewController} from './view-controller'; * } * ``` * + * | Page Event | Description | + * |--------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| + * | `onPageLoaded` | Runs when the page has loaded. This event only happens once per page being created and added to the DOM. If a page leaves but is cached, then this event will not fire again on a subsequent viewing. The `onPageLoaded` event is good place to put your setup code for the page. | + * | `onPageWillEnter` | Runs when the page is about to enter and become the active page. | + * | `onPageDidEnter` | Runs when the page has fully entered and is now the active page. This event will fire, whether it was the first load or a cached page. | + * | `onPageWillLeave` | Runs when the page is about to leave and no longer be the active page. | + * | `onPageDidLeave` | Runs when the page has finished leaving and is no longer the active page. | + * | `onPageWillUnload` | Runs when the page is about to be destroyed and have its elements removed. | + * | `onPageDidUnload` | Runs after the page has been destroyed and its elements have been removed. * * - * - `onPageLoaded` - Runs when the page has loaded. This event only happens once per page being created and added to the DOM. If a page leaves but is cached, then this event will not fire again on a subsequent viewing. The `onPageLoaded` event is good place to put your setup code for the page. - * - `onPageWillEnter` - Runs when the page is about to enter and become the active page. - * - `onPageDidEnter` - Runs when the page has fully entered and is now the active page. This event will fire, whether it was the first load or a cached page. - * - `onPageWillLeave` - Runs when the page is about to leave and no longer be the active page. - * - `onPageDidLeave` - Runs when the page has finished leaving and is no longer the active page. - * - `onPageWillUnload` - Runs when the page is about to be destroyed and have its elements removed. - * - `onPageDidUnload` - Runs after the page has been destroyed and its elements have been removed. - * * * ### Nav Transition Promises *