Remove logging

This commit is contained in:
Nathan Sobo
2017-02-28 20:20:47 -07:00
committed by Antonio Scandurra
parent 55ed9e4f62
commit c22a81dc57

View File

@@ -525,7 +525,6 @@ class TextEditorComponent {
didBlurHiddenInput (event) {
if (this.element !== event.relatedTarget && !this.element.contains(event.relatedTarget)) {
console.log('blur hi');
this.focused = false
this.scheduleUpdate()
}
@@ -533,7 +532,6 @@ class TextEditorComponent {
didFocusHiddenInput () {
if (!this.focused) {
console.log('focus hi');
this.focused = true
this.scheduleUpdate()
}