docs(IonicApp): IonicApp is not private

This commit is contained in:
Tim Lancina
2016-03-04 08:54:46 -06:00
parent acf2bd9820
commit 4a21fb02f8
2 changed files with 2 additions and 8 deletions

View File

@ -7,9 +7,8 @@ import {rafFrames} from '../../util/dom';
/**
* @private
* Component registry service. For more information on registering
* components see the [IdRef API reference](../id/IdRef/).
* App utility service. Allows you to look up components that have been
* registered using the [Id directive](../Id/).
*/
@Injectable()
export class IonicApp {
@ -92,7 +91,6 @@ export class IonicApp {
}
/**
* @private
* Boolean if the app is actively scrolling or not.
* @return {boolean}
*/
@ -135,7 +133,6 @@ export class IonicApp {
}
/**
* @private
* Get the component for the given key.
*/
getComponent(id: string): any {

View File

@ -9,9 +9,6 @@ import {IonicApp} from './app';
* no matter where in the UI hierarchy you are. For example, this makes toggling
* a global side menu possible from any place in the application.
*
* See the [Menu section](http://ionicframework.com/docs/v2/components/#menus) of
* the Component docs for an example of how Menus rely on ID's.
*
* @usage
* To give any component an ID, simply set its `id` property:
* ```html