Skip to content

Commit

Permalink
Add doc for MdCheckboxChange
Browse files Browse the repository at this point in the history
Add doc for MdButtonToggleChange
  • Loading branch information
tinayuangao committed Mar 8, 2017
1 parent d78a370 commit f227fcc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/button-toggle/button-toggle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ var _uniqueIdCounter = 0;

/** Change event object emitted by MdButtonToggle. */
export class MdButtonToggleChange {
/** The MdButtonToggle who emits the event. */
source: MdButtonToggle;
/** The value assigned to the MdButtonToggle. */
value: any;
}

Expand Down
2 changes: 2 additions & 0 deletions src/lib/checkbox/checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ export enum TransitionCheckState {

/** Change event object emitted by MdCheckbox. */
export class MdCheckboxChange {
/** The source MdCheckbox of the event. */
source: MdCheckbox;
/** The new `checked` value of the checkbox. */
checked: boolean;
}

Expand Down

0 comments on commit f227fcc

Please sign in to comment.