├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md └── lib └── okay-nav.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VPenkov/okayNav-vanillaJS/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VPenkov/okayNav-vanillaJS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VPenkov/okayNav-vanillaJS/HEAD/README.md -------------------------------------------------------------------------------- /lib/okay-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VPenkov/okayNav-vanillaJS/HEAD/lib/okay-nav.js --------------------------------------------------------------------------------