├── LICENSE.txt ├── README.md ├── app.js ├── gulpfile.js ├── index.html ├── package.json ├── server.js └── src ├── github ├── github.ctrl.js └── github.svc.js └── module.js /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdx/ng-modules/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdx/ng-modules/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdx/ng-modules/HEAD/app.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdx/ng-modules/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdx/ng-modules/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdx/ng-modules/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdx/ng-modules/HEAD/server.js -------------------------------------------------------------------------------- /src/github/github.ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdx/ng-modules/HEAD/src/github/github.ctrl.js -------------------------------------------------------------------------------- /src/github/github.svc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdx/ng-modules/HEAD/src/github/github.svc.js -------------------------------------------------------------------------------- /src/module.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('app', []) 2 | --------------------------------------------------------------------------------