Erich Stark

Results 11 comments of Erich Stark

Any update on this? I have the same problem even with webpack integration.

Hey @manuelmeurer, it looks like a normal behaviour if you have in your CSS `scroll-behavior: smooth;` on html or body tag. I am not sure why it is working in...

That is actually good idea. It could work. Why do you need smooth scroll? If it is for SPA navigation via #some-id, it could be done by some JavaScript code....

@manuelmeurer btw I think style attr is readonly. Better approach should be setting directly the property like ``` let html = document.querySelector('html'); // proper init ... startCallback: function() { html.style.scrollBehavior...

Hi, actually I did have. ``` new Hiraku('.js-offcanvas-left', { btn: '.js-offcanvas-btn-left', fixedHeader: '.js-fixed-header', direction: 'left', breakpoint: 767, width: '80%' }); new Hiraku('.js-offcanvas-right', { btn: '.js-offcanvas-btn-right', fixedHeader: '.js-fixed-header', direction: 'right', breakpoint:...

Thanks @mcler. I will look at it. Original plugin didn't work so I have found this one https://github.com/damorej-at-theinstitutes/webpack-concat-files-plugin. But I need something simpler for concate files, not bundling with webpack...

This update for webpack 5 works. @hxlniada could you please look at it and release?

I have the same problem. The readonly attribute is passed only to hidden input.

Probably here https://github.com/flatpickr/flatpickr/blob/master/src/index.ts#L2639 should be added line self.altInput.readonly = self.input.readonly; @chmln ?

Update providers inside your module: `providers:[{ provide: NgxMatDateAdapter, useClass: MyDateAdapter}]` then create new adapter in the same location of the component/page for example ``` import { NgxMatNativeDateAdapter } from '@angular-material-components/datetime-picker';...