style: fix ts linter errors

This commit is contained in:
Brandy Carney
2016-04-20 16:15:22 -04:00
parent c3fb051ed6
commit 47cdfaf87a
3 changed files with 5 additions and 5 deletions

View File

@ -44,7 +44,7 @@ export class NativeInput {
function docTouchEnd(ev) {
var tapped: HTMLElement = ev.target;
if (tapped && self.element()) {
if (tapped.tagName !== "INPUT" && tapped.tagName !== "TEXTAREA" && !tapped.classList.contains('input-cover')) {
if (tapped.tagName !== 'INPUT' && tapped.tagName !== 'TEXTAREA' && !tapped.classList.contains('input-cover')) {
self.element().blur();
}
}
@ -211,4 +211,4 @@ export class NextInput {
this.focused.emit(true);
}
}
}