├── README.md
├── bower.json
├── controllers.js
├── example.html
├── src
└── angular-googleapi.js
└── vendor
└── angular.js
/README.md:
--------------------------------------------------------------------------------
1 | angular-googleapi
2 | =================
3 |
4 | angular-googleapi makes it easy to use google apis from angular. So far we have support for login and a couple of google calendar methods, but it should be super easy to add others.
5 |
6 | Installation
7 | ------------
8 |
9 | ````
10 | bower install angular-googleapi
11 | ````
12 |
13 | Or just download src/angular-googleapi.js
14 |
15 | Then in your angular module add angular-googleapi as a dependency.
16 |
17 | Usage
18 | -----
19 |
20 | The module will automatically load and initialize the Google API.
21 | There is no need to manually include a `
29 |
30 |
31 |
32 |
33 |