-
Notifications
You must be signed in to change notification settings - Fork 69
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
Chrome 73 mouseup disappear issue #40
Comments
I'm having the same issue @warmwhisky. Did you figure it out how to solve it? |
same problem here. Did you find any workaround? |
The same, has anybody found a fix of the problem? |
I found these guys had the same issue in their docs with there implementation of the clock picker. They have fixed it, but I could not figure out what had been done. mdbootstrap/bootstrap-material-design |
I solved it by using an afterShow: function() {
setTimeout(() => {
$(".collectTime .clockpicker").addClass('picker--opened')
$(".collectTime .clockpicker").show();
}, 50);
} It's an ugly workaround but solved the issue. I did it before I found the probably related amsul/pickadate.js#1138 which solved the same issue I had with the pickadate. |
Same problem here. |
The same, Has anyone found a fix the problem? |
kaideptrai1102, you can try the renan-teranto's solution, it works but looking not so good :) Anyway it's better than nothing. |
I found a solution to this problem, adding one more condition to the if () but clicking on the other side of the modality of the datepicker does not close the datepicker, only if the close button is added
|
By somehow, I added target.classList.contains('picker__holder' ) to the condition if(), so now I can click outside to close datepicker, it's working perfectly fine :) For clocktime picker, |
This Is Working For Me... |
When clicking the input with mousedown, the clock picker pops up but on mouseup it disappears.
The text was updated successfully, but these errors were encountered: