diff --git a/app/coffee/modules/common/estimation.coffee b/app/coffee/modules/common/estimation.coffee index f8666078..3ca34f5f 100644 --- a/app/coffee/modules/common/estimation.coffee +++ b/app/coffee/modules/common/estimation.coffee @@ -224,7 +224,12 @@ EstimationsService = ($template, $qqueue, $repo, $confirm, $q) -> @$el.find(".pop-points-open").show() create = ($el, us, project) -> - estimationProcess = new EstimationProcess($el, us, project) + estimationProcess = $el.data("estimationProcess") + + if !estimationProcess + estimationProcess = new EstimationProcess($el, us, project) + $el.data("estimationProcess", estimationProcess) + if estimationProcess.isEditable estimationProcess.bindClickEvents() else