alpha37 updates

This commit is contained in:
Adam Bradley
2015-09-11 21:03:42 -05:00
parent 860471d822
commit 1e5e067ed1
49 changed files with 76 additions and 319 deletions

View File

@ -79,9 +79,9 @@ export class TextInputElement {
host: {
'(focus)': 'receivedFocus(true)',
'(blur)': 'receivedFocus(false)',
'(^touchstart)': 'pointerStart($event)',
'(^touchend)': 'pointerEnd($event)',
'(^mouseup)': 'pointerEnd($event)',
'(touchstart)': 'pointerStart($event)',
'(touchend)': 'pointerEnd($event)',
'(mouseup)': 'pointerEnd($event)',
'[class.has-focus]': 'inputHasFocus',
'[class.has-value]': 'inputHasValue',
'[tabIndex]': 'activeTabIndex',