├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENCE ├── README.md ├── app ├── focus-element-overlay.js └── focus-element-overlay.min.js ├── bower.json ├── package.json ├── relaser.json ├── sample_app ├── demo.js └── index.html ├── showcase ├── elements.gif ├── header.gif └── list.gif └── test ├── index.html ├── lib.js ├── libs └── jquery-2.1.1.js ├── qunit-1.16.0.css ├── qunit-1.16.0.js └── tests.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/README.md -------------------------------------------------------------------------------- /app/focus-element-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/app/focus-element-overlay.js -------------------------------------------------------------------------------- /app/focus-element-overlay.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/app/focus-element-overlay.min.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/package.json -------------------------------------------------------------------------------- /relaser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/relaser.json -------------------------------------------------------------------------------- /sample_app/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/sample_app/demo.js -------------------------------------------------------------------------------- /sample_app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/sample_app/index.html -------------------------------------------------------------------------------- /showcase/elements.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/showcase/elements.gif -------------------------------------------------------------------------------- /showcase/header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/showcase/header.gif -------------------------------------------------------------------------------- /showcase/list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/showcase/list.gif -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/test/index.html -------------------------------------------------------------------------------- /test/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/test/lib.js -------------------------------------------------------------------------------- /test/libs/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/test/libs/jquery-2.1.1.js -------------------------------------------------------------------------------- /test/qunit-1.16.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/test/qunit-1.16.0.css -------------------------------------------------------------------------------- /test/qunit-1.16.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/test/qunit-1.16.0.js -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/focusable/HEAD/test/tests.js --------------------------------------------------------------------------------