We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b9edbd commit b970ebcCopy full SHA for b970ebc
src/ng-fusioncharts.js
@@ -27,7 +27,7 @@
27
var fc = angular.module('ng-fusioncharts', []);
28
29
30
- fc.directive('fcChart', function ($http) {
+ fc.directive('fcChart', ['$http', function ($http) {
31
return {
32
scope: {
33
fcWidth: '@',
@@ -120,7 +120,6 @@
120
});
121
}, true);
122
}
123
-
124
125
126
var chart = new FusionCharts(chartConfigObject);
@@ -129,5 +128,6 @@
129
128
130
131
132
- });
+ }
+ ]);
133
}());
0 commit comments