linted previous 2 pushes

This commit is contained in:
Jared Tabor
2014-07-03 11:57:25 -04:00
parent a5b0864a7a
commit 034073c92c
2 changed files with 43 additions and 43 deletions

View File

@@ -11,7 +11,7 @@
angular.module('HostGraphWidget', ['RestServices', 'Utilities']) angular.module('HostGraphWidget', ['RestServices', 'Utilities'])
.factory('HostGraph', ['$rootScope', '$compile', '$location', 'Rest', 'GetBasePath', 'ProcessErrors', 'Wait', .factory('HostGraph', ['$rootScope', '$compile', '$location', 'Rest', 'GetBasePath', 'ProcessErrors', 'Wait',
function ($rootScope, $compile, $location, Rest, GetBasePath, ProcessErrors, Wait) { function ($rootScope, $compile, $location, Rest, GetBasePath, ProcessErrors) {
return function (params) { return function (params) {
var scope = params.scope, var scope = params.scope,
@@ -45,7 +45,7 @@ angular.module('HostGraphWidget', ['RestServices', 'Utilities'])
}); });
//return license; //return license;
}; }
function makeHostCountGraph(license){ function makeHostCountGraph(license){
@@ -54,7 +54,7 @@ angular.module('HostGraphWidget', ['RestServices', 'Utilities'])
//d3.json("static/js/jobstatusdata.json",function(error,data) { //d3.json("static/js/jobstatusdata.json",function(error,data) {
d3.json(url, function(error,data) { d3.json(url, function(error,data) {
// console.log(data);
graphData = [ graphData = [
{ {
"key" : "Hosts" , "key" : "Hosts" ,

View File

@@ -11,7 +11,7 @@
angular.module('JobStatusGraphWidget', ['RestServices', 'Utilities']) angular.module('JobStatusGraphWidget', ['RestServices', 'Utilities'])
.factory('JobStatusGraph', ['$rootScope', '$compile', '$location' , 'Rest', 'GetBasePath', 'ProcessErrors', 'Wait', .factory('JobStatusGraph', ['$rootScope', '$compile', '$location' , 'Rest', 'GetBasePath', 'ProcessErrors', 'Wait',
function ($rootScope, $compile , $location, Rest, GetBasePath, ProcessErrors, Wait) { function ($rootScope, $compile , $location, Rest, GetBasePath) {
return function (params) { return function (params) {
var scope = params.scope, var scope = params.scope,