├── .gitignore ├── LICENSE ├── app ├── config.json ├── layouts │ ├── light.htm │ ├── pepper.htm │ ├── shonky.htm │ ├── simple-laptop.htm │ └── simple.htm ├── main.js ├── scripts │ ├── chart.js │ ├── format.js │ ├── parse.js │ ├── selectors.js │ └── widgets.js └── themes │ ├── dark.css │ ├── light.css │ ├── pepper.css │ ├── shonky.css │ └── simple.css ├── docs ├── contributing.md ├── getting-started.md ├── packaging.md ├── reference.md └── todo.md ├── fanbox.gif ├── getting-started.md ├── package.json ├── readme.md └── simple.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/LICENSE -------------------------------------------------------------------------------- /app/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/config.json -------------------------------------------------------------------------------- /app/layouts/light.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/layouts/light.htm -------------------------------------------------------------------------------- /app/layouts/pepper.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/layouts/pepper.htm -------------------------------------------------------------------------------- /app/layouts/shonky.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/layouts/shonky.htm -------------------------------------------------------------------------------- /app/layouts/simple-laptop.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/layouts/simple-laptop.htm -------------------------------------------------------------------------------- /app/layouts/simple.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/layouts/simple.htm -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/main.js -------------------------------------------------------------------------------- /app/scripts/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/scripts/chart.js -------------------------------------------------------------------------------- /app/scripts/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/scripts/format.js -------------------------------------------------------------------------------- /app/scripts/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/scripts/parse.js -------------------------------------------------------------------------------- /app/scripts/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/scripts/selectors.js -------------------------------------------------------------------------------- /app/scripts/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/scripts/widgets.js -------------------------------------------------------------------------------- /app/themes/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/themes/dark.css -------------------------------------------------------------------------------- /app/themes/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/themes/light.css -------------------------------------------------------------------------------- /app/themes/pepper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/themes/pepper.css -------------------------------------------------------------------------------- /app/themes/shonky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/themes/shonky.css -------------------------------------------------------------------------------- /app/themes/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/app/themes/simple.css -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/docs/packaging.md -------------------------------------------------------------------------------- /docs/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/docs/reference.md -------------------------------------------------------------------------------- /docs/todo.md: -------------------------------------------------------------------------------- 1 | - tests 2 | -------------------------------------------------------------------------------- /fanbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/fanbox.gif -------------------------------------------------------------------------------- /getting-started.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/readme.md -------------------------------------------------------------------------------- /simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joereynolds/fanbox/HEAD/simple.png --------------------------------------------------------------------------------