summaryrefslogtreecommitdiff
path: root/www/lib/angular-google-chart/sample.js
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-06-17 11:37:36 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-06-17 11:37:36 -0400
commit32caa920e903d0895488089c30ffec9338482df6 (patch)
tree527af89e9a5676eafbac6ab2acb5a466e6953cac /www/lib/angular-google-chart/sample.js
parentc826098ee78f727de9af881d8fd6ffd229b98481 (diff)
Updated to latest version of ionic, cordova, removed unused libraries
Diffstat (limited to 'www/lib/angular-google-chart/sample.js')
-rw-r--r--www/lib/angular-google-chart/sample.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/www/lib/angular-google-chart/sample.js b/www/lib/angular-google-chart/sample.js
deleted file mode 100644
index 4ed46fff..00000000
--- a/www/lib/angular-google-chart/sample.js
+++ /dev/null
@@ -1,25 +0,0 @@
-angular.module("google-chart-sample", ["ngRoute", "googlechart"]).config(['$routeProvider',
- function ($routeProvider) {
- $routeProvider.
- when('/fat', {
- templateUrl: 'partials/fat.html',
- controller: 'FatChartCtrl'
- }).
- when('/annotation', {
- templateUrl: 'partials/annotation.html',
- controller: 'AnnotationChartCtrl'
- }).
- when('/generic/:chartType', {
- templateUrl: 'partials/generic.html',
- controller: 'GenericChartCtrl'
- }).
- otherwise({
- redirectTo: '/fat'
- });
- }]).value('googleChartApiConfig', {
- version: '1',
- optionalSettings: {
- packages: ['corechart'],
- language: 'fr'
- }
- });