summaryrefslogtreecommitdiff
path: root/www/lib/angular-google-chart/sample.js
diff options
context:
space:
mode:
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'
- }
- });