-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set clear button not opening the overlay #620
Conversation
src/vaadin-combo-box.html
Outdated
@@ -90,6 +91,8 @@ | |||
_item-label-path="[[itemLabelPath]]" | |||
loading="[[loading]]"> | |||
</vaadin-combo-box-dropdown-wrapper> | |||
|
|||
<iron-media-query query="(min-width: 600px)" query-matches="{{_desktopMode}}"></iron-media-query> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Device width is not a really detecting the input method, is it? :)
I don’t like the fact that we need a new dependency for this (iron-media-query). We should detect touch devices, whether the button was clicked with a finger or a touch device.
Reviewed 5 of 5 files at r1. src/vaadin-combo-box.html, line 95 at r1 (raw file): Previously, jouni (Jouni Koivuviita) wrote…
BTW, we use Comments from Reviewable |
47cf2df
to
a503fab
Compare
Review status: 2 of 3 files reviewed at latest revision, 1 unresolved discussion. src/vaadin-combo-box.html, line 95 at r1 (raw file): Previously, web-padawan (Sergey Kulikov) wrote…
I have removed Comments from Reviewable |
Reviewed 2 of 3 files at r2. Comments from Reviewable |
a503fab
to
934dd20
Compare
934dd20
to
4e6e521
Compare
Reviewed 2 of 5 files at r1, 1 of 1 files at r3. Comments from Reviewable |
The vaadin-device-detector in context-menu is a rather odd one. I feel like we should get rid of that, or at least extract it out as a separate utility mixin. |
@jouni +1 to the mixin, at least to detect touch device / IE / Safari etc. Something like |
Reviewed 1 of 1 files at r4. Comments from Reviewable |
Fixes #613
Not sure if I can properly test the focused state of the input on mobile and desktop. Will be grateful for any suggestions.
This change is