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

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