├── Cakefile ├── component.json ├── components ├── bootstrap │ ├── README.md │ ├── component.json │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js └── jquery │ ├── component.json │ └── jquery.js ├── package.json ├── public ├── client.coffee ├── client.js ├── default.jpg ├── index.html └── style.css ├── readme.md ├── screenshot.png ├── server.coffee └── server.js /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/Cakefile -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/component.json -------------------------------------------------------------------------------- /components/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/bootstrap/README.md -------------------------------------------------------------------------------- /components/bootstrap/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/bootstrap/component.json -------------------------------------------------------------------------------- /components/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /components/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /components/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /components/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /components/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /components/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /components/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /components/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /components/jquery/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/jquery/component.json -------------------------------------------------------------------------------- /components/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/components/jquery/jquery.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/package.json -------------------------------------------------------------------------------- /public/client.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/public/client.coffee -------------------------------------------------------------------------------- /public/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/public/client.js -------------------------------------------------------------------------------- /public/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/public/default.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/public/index.html -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/public/style.css -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/screenshot.png -------------------------------------------------------------------------------- /server.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/server.coffee -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functino/drone-browser/HEAD/server.js --------------------------------------------------------------------------------