From a4f8d4d864ca5e9b5bd36316bd9431318a4c3954 Mon Sep 17 00:00:00 2001 From: Rashid Khan Date: Mon, 23 Sep 2013 08:15:48 -0700 Subject: [PATCH] Fixed path to pie and some double quote escaping issues --- src/app/panels/pie/module.html | 4 ++-- src/app/panels/pie/module.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/panels/pie/module.html b/src/app/panels/pie/module.html index b7f454cc9fe..eba833294f3 100755 --- a/src/app/panels/pie/module.html +++ b/src/app/panels/pie/module.html @@ -1,12 +1,12 @@
- {{query.label}} ({{query.data[0][1]}}) + {{query.label}} ({{query.data[0][1]}})

- {{query.label}} ({{query.data[0][1]}}) + {{query.label}} ({{query.data[0][1]}})
\ No newline at end of file diff --git a/src/app/panels/pie/module.js b/src/app/panels/pie/module.js index 7442c86f482..2232f737002 100755 --- a/src/app/panels/pie/module.js +++ b/src/app/panels/pie/module.js @@ -254,7 +254,7 @@ define([ // Populate legend if(elem.is(":visible")){ - require(['vendor/jquery/jquery.flot.pie.js'], function(){ + require(['jquery.flot.pie'], function(){ scope.legend = $.plot(elem, scope.data, pie).getData(); if(!scope.$$phase) { scope.$apply();