From 329c1127c50f0d10f9667dfbf8a30f2f33fa6b14 Mon Sep 17 00:00:00 2001 From: mhartington Date: Mon, 1 Feb 2016 12:01:38 -0500 Subject: [PATCH] docs(checkbox): updates methods and inputs --- ionic/components/checkbox/checkbox.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ionic/components/checkbox/checkbox.ts b/ionic/components/checkbox/checkbox.ts index bf380bbef1..b7300d8e64 100644 --- a/ionic/components/checkbox/checkbox.ts +++ b/ionic/components/checkbox/checkbox.ts @@ -28,7 +28,7 @@ import {isTrueProperty} from '../../util/util'; * * * Sausage - * + * * * * @@ -68,6 +68,9 @@ export class Checkbox { */ id: string; + /** + * @private + */ @Input() value: string = ''; constructor( @@ -96,6 +99,9 @@ export class Checkbox { this.checked = !this.checked; } + /** + * @private + */ @Input() get checked() { return this._checked; @@ -109,6 +115,9 @@ export class Checkbox { } } + /** + * @private + */ @Input() get disabled() { return this._disabled;