docs(navController): update life cylce hooks

This commit is contained in:
mhartington
2016-04-19 10:24:49 -04:00
parent 5aa816946a
commit 28eb819a0e

View File

@ -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
*