From 8fe145f06562032308f5d4ac1631cc914fabffc2 Mon Sep 17 00:00:00 2001 From: mhartington Date: Mon, 1 Feb 2016 14:41:10 -0500 Subject: [PATCH] docs(icon): hide methods hide methods that do not need docs --- ionic/components/icon/icon.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/ionic/components/icon/icon.ts b/ionic/components/icon/icon.ts index d2d65e837a..7b4f3ce000 100644 --- a/ionic/components/icon/icon.ts +++ b/ionic/components/icon/icon.ts @@ -53,6 +53,10 @@ export class Icon { private _ios: string = ''; private _md: string = ''; private _css: string = ''; + + /** + * @private + */ mode: string; constructor( @@ -79,6 +83,9 @@ export class Icon { } } + /** + * @private + */ @Input() get name(): string { return this._name; @@ -94,6 +101,9 @@ export class Icon { this.update(); } + /** + * @private + */ @Input() get ios(): string { return this._ios; @@ -104,6 +114,9 @@ export class Icon { this.update(); } + /** + * @private + */ @Input() get md(): string { return this._md; @@ -114,6 +127,9 @@ export class Icon { this.update(); } + /** + * @private + */ @Input() get isActive(): boolean { return (this._isActive === undefined || this._isActive === true || this._isActive === 'true');