├── .gitignore ├── LICENSE ├── README.md ├── assets └── css │ ├── check-switch.css │ ├── on-off-switch.css │ └── toggle-switch.css ├── index.html └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/aria-switch-control/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/aria-switch-control/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/check-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/aria-switch-control/HEAD/assets/css/check-switch.css -------------------------------------------------------------------------------- /assets/css/on-off-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/aria-switch-control/HEAD/assets/css/on-off-switch.css -------------------------------------------------------------------------------- /assets/css/toggle-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/aria-switch-control/HEAD/assets/css/toggle-switch.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/aria-switch-control/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottaohara/aria-switch-control/HEAD/index.js --------------------------------------------------------------------------------