├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets--demo ├── demo.css └── demo.js ├── assets ├── css │ └── aria.modal.css └── js │ └── aria.modal.min.js ├── index.html ├── index.js ├── package.json └── tests ├── auto-load.html ├── focus-element.html └── general.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | index.html 2 | tests/ 3 | assets--demo/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/README.md -------------------------------------------------------------------------------- /assets--demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/assets--demo/demo.css -------------------------------------------------------------------------------- /assets--demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/assets--demo/demo.js -------------------------------------------------------------------------------- /assets/css/aria.modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/assets/css/aria.modal.css -------------------------------------------------------------------------------- /assets/js/aria.modal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/assets/js/aria.modal.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/package.json -------------------------------------------------------------------------------- /tests/auto-load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/tests/auto-load.html -------------------------------------------------------------------------------- /tests/focus-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/tests/focus-element.html -------------------------------------------------------------------------------- /tests/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/accessible_modal_window/HEAD/tests/general.html --------------------------------------------------------------------------------