Revert "FIX: prevents focus of input on mobile (#6251)"

This reverts commit bfcf8ed61b.
This commit is contained in:
Penar Musaraj 2019-12-12 11:17:40 -05:00
parent 8dcda65837
commit f62c9def33
1 changed files with 1 additions and 5 deletions

View File

@ -111,11 +111,7 @@ export default Mixin.create({
$(context.element).focus();
}
} else {
if (this.site && this.site.isMobileDevice) {
this.expand();
} else {
context.$filterInput().focus();
}
context.$filterInput().focus();
}
});
});