Date Input not working after Chrome update
Date picker is not working after google chrome got updated to version 73.0.3683.86.
Only left button click in the mouse works.This issue can be seen from the demo site itself https://mike-north.github.io/ember-cli-materialize/#/forms
What do you mean it doesn't work? I've been using it without a problem. What's exactly the problem? Can you do some screenshots or maybe record a video?
Same issue is being discussed in the materializecss repo and also pickadate repo
https://github.com/Dogfalo/materialize/issues/6322
A potential temporary workaround is something like the following:
document.querySelectorAll('body').forEach(t => t.addEventListener('click', (e) => { if (e.target.classList.contains('input-field')) e.stopPropagation(); }));
What do you mean it doesn't work? I've been using it without a problem. What's exactly the problem? Can you do some screenshots or maybe record a video?
I've just found that I was testing it on Firefox and the problem is only in Chrome v73. Thanks @kcahir :smile:.