autocomplete: suggestion box not closing on blur #9581
Description
Reopening #7419 as suggested by @EladBezalel
Actual Behavior:
Inputs are not blurred when tapping outside of a focussed input element.
The autocomplete suggestion box is not closing when the user taps outside the autocomplete to close the suggestion box without selecting a value.
This only happens on touch devices. Tested on Android/Chrome 52.0.2743.98 and iPhone/Safari 9.
When using the "Done" on iOS keyboard the suggestion box closes.
Hiding the keyboard on Android did not close the suggestion box.
Expected Behavior:
The autocomplete suggestion box should close when the user blurs the control by clicking/touching outside of it.
Additional Info
According to the comments in #7419 it worked in 0.11.4.
The issue might origin from function mouseInputHijacker
and a quick-and-dirty fix for the autocomplete may be applying a css rule:
.md-scroll-mask {
display: none;
}