found some commas

This commit is contained in:
Tim Lancina
2015-06-22 14:27:01 -05:00
parent 1e496d6aed
commit 341766ab8f
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ export class Checkbox {
'(^click)': 'onClick($event)', '(^click)': 'onClick($event)',
'[attr.aria-checked]': 'checked', '[attr.aria-checked]': 'checked',
'[attr.aria-disabled]': 'disabled', '[attr.aria-disabled]': 'disabled',
'[attr.value]': 'value' '[attr.value]': 'value',
'role': 'checkbox', 'role': 'checkbox',
'class': 'item' 'class': 'item'
}, },

View File

@ -8,7 +8,7 @@ import {ElementRef} from 'angular2/src/core/compiler/element_ref';
'name' 'name'
], ],
host: { host: {
'[attr.aria-label]': 'label' '[attr.aria-label]': 'label',
'role': 'img' 'role': 'img'
}, },
lifecycle: [onInit] lifecycle: [onInit]