From 9d54ab06be5747c63bcf272d2dded5eaff88dc04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Sat, 28 Jun 2014 04:21:14 +0200 Subject: [PATCH] Fix typo --- app/coffee/modules/backlog/lightboxes.coffee | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/coffee/modules/backlog/lightboxes.coffee b/app/coffee/modules/backlog/lightboxes.coffee index 1053f380..ed58368a 100644 --- a/app/coffee/modules/backlog/lightboxes.coffee +++ b/app/coffee/modules/backlog/lightboxes.coffee @@ -133,7 +133,7 @@ CreateEditUserstoryDirective = ($repo, $model, $rs, $rootScope) -> return {link: link} -CreateBulkUserstroriesDirective = ($repo, $rs, $rootscope) -> +CreateBulkUserstoriesDirective = ($repo, $rs, $rootscope) -> link = ($scope, $el, attrs) -> $scope.form = {data: ""} @@ -208,6 +208,8 @@ CreateSprint = ($repo, $rs, $rootscope) -> module = angular.module("taigaBacklog") -module.directive("tgLbCreateEditUserstory", ["$tgRepo", "$tgModel", "$tgResources", "$rootScope", CreateEditUserstoryDirective]) -module.directive("tgLbCreateBulkUserstories", ["$tgRepo", "$tgResources", "$rootScope", CreateBulkUserstroriesDirective]) +module.directive("tgLbCreateEditUserstory", ["$tgRepo", "$tgModel", "$tgResources", "$rootScope", + CreateEditUserstoryDirective]) +module.directive("tgLbCreateBulkUserstories", ["$tgRepo", "$tgResources", "$rootScope", + CreateBulkUserstoriesDirective]) module.directive("tgLbCreateSprint", ["$tgRepo", "$tgResources", "$rootScope", CreateSprint])