Twipped / Kalendae

A javascript date picker that just works.
MIT License
1.99k stars 285 forks source link

Handle overflow-x and overflow-y to detect scroll container #230

Closed saveman71 closed 4 years ago

saveman71 commented 4 years ago

I've noticed one of our modals (bootstrap) uses two separate styles to manage overflow (x and y). The current code cannot handle these, the patch fixes that.

saveman71 commented 4 years ago

Reproducing on the bootstrap website:

https://getbootstrap.com/docs/3.3/javascript/#live-demo

Open the modal.

Run getComputedStyle($$('.modal')[0])['overflow'] in the console

Twipped commented 4 years ago

Interesting, I'd never seen anyone use overflow like that. Thanks.