├── .bowerrc ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── bower.json ├── dist └── ionic-ratings.min.js ├── gulpfile.js ├── ionic.project ├── package.json └── src └── ionic-ratings.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.paypal.me/rajeshwarpatlolla/10"] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshwarpatlolla/ionic-ratings/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshwarpatlolla/ionic-ratings/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshwarpatlolla/ionic-ratings/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshwarpatlolla/ionic-ratings/HEAD/bower.json -------------------------------------------------------------------------------- /dist/ionic-ratings.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshwarpatlolla/ionic-ratings/HEAD/dist/ionic-ratings.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshwarpatlolla/ionic-ratings/HEAD/gulpfile.js -------------------------------------------------------------------------------- /ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshwarpatlolla/ionic-ratings/HEAD/ionic.project -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshwarpatlolla/ionic-ratings/HEAD/package.json -------------------------------------------------------------------------------- /src/ionic-ratings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshwarpatlolla/ionic-ratings/HEAD/src/ionic-ratings.js --------------------------------------------------------------------------------