├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── README.md ├── bower.json ├── index.js ├── package.json ├── src └── spots.js └── test ├── .gitignore ├── index.html ├── karma.conf.js └── spots-spec.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/bower.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/package.json -------------------------------------------------------------------------------- /src/spots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/src/spots.js -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/test/index.html -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/spots-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/spots/HEAD/test/spots-spec.js --------------------------------------------------------------------------------