Package Exports
- makeup-prevent-scroll-keys
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (makeup-prevent-scroll-keys) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
makeup-prevent-scroll-keys
This CommonJS module prevents the default scroll event when pressing down arrow, page down, spacebar, etc. This behaviour is required for ARIA widgets such as menu, tabs and comboboxes. See eBay MIND Patterns for further information.
Experimental
This module is still in an experimental state, until it reaches v1.0.0 you must consider all minor releases as breaking changes. Patch releases may introduce new features, but will be backwards compatible.
Install
// via npm
npm install makeup-prevent-scroll-keys
// via yarn
yarn add makeup-prevent-scroll-keysExample
// require the module
const scrollKeyPreventer = require('makeup-prevent-scroll-keys');
// get element reference
const widgetEl = document.querySelector('.widget');
// execute
scrollKeyPreventer.add(el);
// to remove
scrollKeyPreventer.remove(el);
Parameters
None
Custom Events
None
Dependencies
None