feat(material): add prototype dialog component w/ demo.

This commit is contained in:
Jeremy Elbourn
2015-04-28 10:56:33 -07:00
parent 75da6e4c4a
commit f88c4b77ca
10 changed files with 456 additions and 4 deletions
@@ -39,7 +39,7 @@ export class MdCheckbox {
/** Setter for tabindex */
tabindex: number;
constructor(@Attribute('tabindex') tabindex: string) {
constructor(@Attribute('tabindex') tabindex: String) {
this.role = 'checkbox';
this.checked = false;
this.tabindex = isPresent(tabindex) ? NumberWrapper.parseInt(tabindex, 10) : 0;