ember-cli-materialize icon indicating copy to clipboard operation
ember-cli-materialize copied to clipboard

Date Input not working after Chrome update

Open jsamuel89 opened this issue 6 years ago • 3 comments

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

jsamuel89 avatar Mar 28 '19 09:03 jsamuel89

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?

Gorzas avatar Apr 02 '19 09:04 Gorzas

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(); }));

kcahir avatar Apr 03 '19 22:04 kcahir

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:.

Gorzas avatar Apr 04 '19 06:04 Gorzas