├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── package.json └── source ├── assets └── common │ ├── css │ └── style.css │ ├── images │ ├── bg.png │ ├── facebook.png │ ├── google.png │ ├── help.png │ ├── info.png │ ├── menu.png │ ├── menu.svg │ ├── thumb.png │ └── twitter.png │ └── js │ ├── ANN.js │ ├── ANNWorker.js │ ├── help.js │ ├── main.js │ ├── sigma-overrides.js │ └── template.js └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/package.json -------------------------------------------------------------------------------- /source/assets/common/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/css/style.css -------------------------------------------------------------------------------- /source/assets/common/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/images/bg.png -------------------------------------------------------------------------------- /source/assets/common/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/images/facebook.png -------------------------------------------------------------------------------- /source/assets/common/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/images/google.png -------------------------------------------------------------------------------- /source/assets/common/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/images/help.png -------------------------------------------------------------------------------- /source/assets/common/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/images/info.png -------------------------------------------------------------------------------- /source/assets/common/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/images/menu.png -------------------------------------------------------------------------------- /source/assets/common/images/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/images/menu.svg -------------------------------------------------------------------------------- /source/assets/common/images/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/images/thumb.png -------------------------------------------------------------------------------- /source/assets/common/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/images/twitter.png -------------------------------------------------------------------------------- /source/assets/common/js/ANN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/js/ANN.js -------------------------------------------------------------------------------- /source/assets/common/js/ANNWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/js/ANNWorker.js -------------------------------------------------------------------------------- /source/assets/common/js/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/js/help.js -------------------------------------------------------------------------------- /source/assets/common/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/js/main.js -------------------------------------------------------------------------------- /source/assets/common/js/sigma-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/js/sigma-overrides.js -------------------------------------------------------------------------------- /source/assets/common/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/assets/common/js/template.js -------------------------------------------------------------------------------- /source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdrsh/interactive-bpann/HEAD/source/index.html --------------------------------------------------------------------------------