From 4a21fb02f8cad5216d22b85da3257e5076f43096 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Fri, 4 Mar 2016 08:54:46 -0600 Subject: [PATCH] docs(IonicApp): IonicApp is not private --- ionic/components/app/app.ts | 7 ++----- ionic/components/app/id.ts | 3 --- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/ionic/components/app/app.ts b/ionic/components/app/app.ts index 7cc560f67b..530d911247 100644 --- a/ionic/components/app/app.ts +++ b/ionic/components/app/app.ts @@ -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 { diff --git a/ionic/components/app/id.ts b/ionic/components/app/id.ts index 4729ad0e73..c055008f21 100644 --- a/ionic/components/app/id.ts +++ b/ionic/components/app/id.ts @@ -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