diff --git a/app/coffee/modules/backlog/main.coffee b/app/coffee/modules/backlog/main.coffee index a80ddd82..5daeb6fe 100644 --- a/app/coffee/modules/backlog/main.coffee +++ b/app/coffee/modules/backlog/main.coffee @@ -669,7 +669,7 @@ UsPointsDirective = ($repo) -> ## Burndown graph directive ############################################################################# -GmBacklogGraphDirective = -> +tgBacklogGraphDirective = -> redrawChart = (element, dataToDraw) -> width = element.width() element.height(width/6) @@ -766,4 +766,4 @@ GmBacklogGraphDirective = -> module.directive("tgBacklog", ["$tgRepo", "$rootScope", BacklogDirective]) module.directive("tgUsPoints", ["$tgRepo", UsPointsDirective]) module.directive("tgUsRolePointsSelector", ["$rootScope", UsRolePointsSelectorDirective]) -module.directive("tgGmBacklogGraph", GmBacklogGraphDirective) +module.directive("tgGmBacklogGraph", tgBacklogGraphDirective)