Renaming backlog graph directive

stable
Alejandro Alonso 2014-07-10 12:45:30 +02:00
parent 8e4bc0595d
commit 53b4d0cec8
1 changed files with 2 additions and 2 deletions

View File

@ -669,7 +669,7 @@ UsPointsDirective = ($repo) ->
## Burndown graph directive ## Burndown graph directive
############################################################################# #############################################################################
GmBacklogGraphDirective = -> tgBacklogGraphDirective = ->
redrawChart = (element, dataToDraw) -> redrawChart = (element, dataToDraw) ->
width = element.width() width = element.width()
element.height(width/6) element.height(width/6)
@ -766,4 +766,4 @@ GmBacklogGraphDirective = ->
module.directive("tgBacklog", ["$tgRepo", "$rootScope", BacklogDirective]) module.directive("tgBacklog", ["$tgRepo", "$rootScope", BacklogDirective])
module.directive("tgUsPoints", ["$tgRepo", UsPointsDirective]) module.directive("tgUsPoints", ["$tgRepo", UsPointsDirective])
module.directive("tgUsRolePointsSelector", ["$rootScope", UsRolePointsSelectorDirective]) module.directive("tgUsRolePointsSelector", ["$rootScope", UsRolePointsSelectorDirective])
module.directive("tgGmBacklogGraph", GmBacklogGraphDirective) module.directive("tgGmBacklogGraph", tgBacklogGraphDirective)