fixed removing resize event listener#292
fixed removing resize event listener#292mattzucker wants to merge 1 commit intotempusdominus:masterfrom
Conversation
|
This project seems to be unmaintained as the maintainer is unresponsive. I have some plans about developing it further, so I have forked both
They are also available through NPM: In these two forks (I worked on the For now, I have left the If you have some pending PR you would like to merge, I invite you to fork my forks instead and we can work @HaroldPutman already sent me a PR which got merged in tonix-tuft/tempusdominus -> tonix-tuft/tempusdominus#1. P.S.: I have also created a React version of Tempus Dominus Bootstrap, available here (I hope you enjoy it 😃): |
|
Hello guys, I have sent all the PRs we have already merged into my two forks (https://github.com/tonix-tuft/tempusdominus and https://github.com/tonix-tuft/tempusdominus-bootstrap) I wanna thank @HaroldPutman, @pablo-lp and @zondatw for their contribution. I think that now it makes sense for us to continue to work on this project in my two forks and from the But again, as @Eonasdan was and still is unresponsive, I think it would make sense to continue the development from the two forked repos https://github.com/tonix-tuft/tempusdominus and https://github.com/tonix-tuft/tempusdominus-bootstrap now using the As always, PRs for new features, bugfixes are welcome! Thank you. Stay tuned. |
When the date picker closes, the window resize event listener is meant to be removed, but instead of referencing the handler function, it calls it. This causes all window resize handlers on the page to be removed, as if calling
$(window).off("resize");This fixes that issue.