From a8e1c8960fba06dd27f56501db6c37399264855a Mon Sep 17 00:00:00 2001 From: mabashian Date: Fri, 14 Dec 2018 16:27:35 -0500 Subject: [PATCH] Remove details function --- .../workflow-chart.directive.js | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/awx/ui/client/src/templates/workflows/workflow-chart/workflow-chart.directive.js b/awx/ui/client/src/templates/workflows/workflow-chart/workflow-chart.directive.js index 7c6791c601..91d2f82e30 100644 --- a/awx/ui/client/src/templates/workflows/workflow-chart/workflow-chart.directive.js +++ b/awx/ui/client/src/templates/workflows/workflow-chart/workflow-chart.directive.js @@ -1358,30 +1358,6 @@ export default ['$state','moment', '$timeout', '$window', '$filter', 'Rest', 'Ge }); } - // function details() { - // this.on("mouseover", function() { - // d3.select(this).style("text-decoration", "underline"); - // }); - // this.on("mouseout", function() { - // d3.select(this).style("text-decoration", null); - // }); - // this.on("click", function(d) { - // if(d.job.type === 'job') { - // $state.go('output', {id: d.job.id, type: 'playbook'}); - // } - // else if(d.job.type === 'inventory_update') { - // $state.go('output', {id: d.job.id, type: 'inventory'}); - // } - // else if(d.job.type === 'project_update') { - // $state.go('output', {id: d.job.id, type: 'project'}); - // } else if (d.job.type === 'workflow_job') { - // $state.go('workflowResults', { - // id: d.job.id, - // }); - // } - // }); - // } - scope.$on('refreshWorkflowChart', function(){ if(scope.graphState) { updateGraph();