├── .bowerrc ├── .gitignore ├── README.md ├── bower.json ├── chartjs-directive.js ├── index.html └── package.json /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earlonrails/angular-chartjs-directive/HEAD/.bowerrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earlonrails/angular-chartjs-directive/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earlonrails/angular-chartjs-directive/HEAD/bower.json -------------------------------------------------------------------------------- /chartjs-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earlonrails/angular-chartjs-directive/HEAD/chartjs-directive.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earlonrails/angular-chartjs-directive/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earlonrails/angular-chartjs-directive/HEAD/package.json --------------------------------------------------------------------------------