├── .project ├── README.md ├── bower.json ├── dist └── ng-facebook-api.js └── example ├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── app ├── .buildignore ├── .htaccess ├── 404.html ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── images │ └── yeoman.png ├── index.html ├── robots.txt ├── scripts │ ├── app.js │ ├── controllers │ │ └── main.js │ └── services │ │ └── ng-facebook-api.js ├── styles │ └── main.css └── views │ └── main.html ├── bower.json ├── karma-e2e.conf.js ├── karma.conf.js ├── package.json └── test ├── .jshintrc ├── runner.html └── spec └── controllers └── main.js /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/bower.json -------------------------------------------------------------------------------- /dist/ng-facebook-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/dist/ng-facebook-api.js -------------------------------------------------------------------------------- /example/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /example/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/.editorconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/.jshintrc -------------------------------------------------------------------------------- /example/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/.travis.yml -------------------------------------------------------------------------------- /example/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/Gruntfile.js -------------------------------------------------------------------------------- /example/app/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /example/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/.htaccess -------------------------------------------------------------------------------- /example/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/404.html -------------------------------------------------------------------------------- /example/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/favicon.ico -------------------------------------------------------------------------------- /example/app/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /example/app/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /example/app/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /example/app/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /example/app/images/yeoman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/images/yeoman.png -------------------------------------------------------------------------------- /example/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/index.html -------------------------------------------------------------------------------- /example/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /example/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/scripts/app.js -------------------------------------------------------------------------------- /example/app/scripts/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/scripts/controllers/main.js -------------------------------------------------------------------------------- /example/app/scripts/services/ng-facebook-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/scripts/services/ng-facebook-api.js -------------------------------------------------------------------------------- /example/app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/styles/main.css -------------------------------------------------------------------------------- /example/app/views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/app/views/main.html -------------------------------------------------------------------------------- /example/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/bower.json -------------------------------------------------------------------------------- /example/karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/karma-e2e.conf.js -------------------------------------------------------------------------------- /example/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/karma.conf.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/package.json -------------------------------------------------------------------------------- /example/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/test/.jshintrc -------------------------------------------------------------------------------- /example/test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/test/runner.html -------------------------------------------------------------------------------- /example/test/spec/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jberta93/ng-facebook-api/HEAD/example/test/spec/controllers/main.js --------------------------------------------------------------------------------