Fix typo
parent
7554fe788a
commit
9d54ab06be
|
@ -133,7 +133,7 @@ CreateEditUserstoryDirective = ($repo, $model, $rs, $rootScope) ->
|
||||||
|
|
||||||
return {link: link}
|
return {link: link}
|
||||||
|
|
||||||
CreateBulkUserstroriesDirective = ($repo, $rs, $rootscope) ->
|
CreateBulkUserstoriesDirective = ($repo, $rs, $rootscope) ->
|
||||||
link = ($scope, $el, attrs) ->
|
link = ($scope, $el, attrs) ->
|
||||||
$scope.form = {data: ""}
|
$scope.form = {data: ""}
|
||||||
|
|
||||||
|
@ -208,6 +208,8 @@ CreateSprint = ($repo, $rs, $rootscope) ->
|
||||||
|
|
||||||
|
|
||||||
module = angular.module("taigaBacklog")
|
module = angular.module("taigaBacklog")
|
||||||
module.directive("tgLbCreateEditUserstory", ["$tgRepo", "$tgModel", "$tgResources", "$rootScope", CreateEditUserstoryDirective])
|
module.directive("tgLbCreateEditUserstory", ["$tgRepo", "$tgModel", "$tgResources", "$rootScope",
|
||||||
module.directive("tgLbCreateBulkUserstories", ["$tgRepo", "$tgResources", "$rootScope", CreateBulkUserstroriesDirective])
|
CreateEditUserstoryDirective])
|
||||||
|
module.directive("tgLbCreateBulkUserstories", ["$tgRepo", "$tgResources", "$rootScope",
|
||||||
|
CreateBulkUserstoriesDirective])
|
||||||
module.directive("tgLbCreateSprint", ["$tgRepo", "$tgResources", "$rootScope", CreateSprint])
|
module.directive("tgLbCreateSprint", ["$tgRepo", "$tgResources", "$rootScope", CreateSprint])
|
||||||
|
|
Loading…
Reference in New Issue