├── .gitignore ├── README.md ├── app ├── img │ ├── green.png │ ├── red.png │ └── yellow.png └── js │ └── app.js ├── bower.json ├── index.html └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octalmage/googlehacks/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octalmage/googlehacks/HEAD/README.md -------------------------------------------------------------------------------- /app/img/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octalmage/googlehacks/HEAD/app/img/green.png -------------------------------------------------------------------------------- /app/img/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octalmage/googlehacks/HEAD/app/img/red.png -------------------------------------------------------------------------------- /app/img/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octalmage/googlehacks/HEAD/app/img/yellow.png -------------------------------------------------------------------------------- /app/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octalmage/googlehacks/HEAD/app/js/app.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octalmage/googlehacks/HEAD/bower.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octalmage/googlehacks/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octalmage/googlehacks/HEAD/package.json --------------------------------------------------------------------------------