You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
When you are using it on Google Chrome for mobiles the selection doesn't work properly. Sometimes the menu is showed up and then fails when you selected it again.
I'm using it inside a paper-material > div.horizontal.layout > div.flex
The text was updated successfully, but these errors were encountered:
I think i am experiencing similar problems. https://www.youtube.com/watch?v=6aiKXI64py4
The video should show it better.
Using it in
paper-drawer-panel > paper-scroll-header-panel > paper-toolbar > div.middle > paper-dropdown-menu
Managed a quick fix by changing line 309 of paper-menu-button from directly calling the open function to using async with a 10ms delay, without any delay in the async the problem persist.
this.async (function() {
this.$.dropdown.open();
},10);
On iOS it occurs when using native WebView (Homescreen-App) and activateEvent='click' on the listbox inside (because the 'tap' event is still leaking). The same issue when using paper-menu instead of paper-listbox. Interestingly the list stays open when using a long touch.
On Safari it works with both gestures for activateEvent.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When you are using it on Google Chrome for mobiles the selection doesn't work properly. Sometimes the menu is showed up and then fails when you selected it again.
I'm using it inside a paper-material > div.horizontal.layout > div.flex
The text was updated successfully, but these errors were encountered: