A jQuery plugin that allows for window resize-end event handling.
yarn add jquery.resizeend
npm install jquery.resizeend
Reference your local script:
<script src="node_modules/jquery.resizeend/lib/jquery.resizeend.min.js"></script>
Or load the script via jsdelivr:
<script src="https://cdn.jsdelivr.net/npm/jquery.resizeend@latest/lib/jquery.resizeend.min.js"></script>
$(window).on('resizeend', function(e) {
// ...
});
Fork the repo and clone locally, then run:
yarn install
This will install the devDependencies
packages and build the dist
folder.
Once you've made your desired changes, make sure to write any new tests for your feature and run the tests:
yarn run lint # lints js
yarn test # runs test suite
If all tests pass, create a pull request.
This plugin is licensed under the MIT license.