BUG 2437 - The taskboard edit lightbox have the button (CREATE in place of SAVE)

stable
Alejandro Alonso 2015-03-13 08:23:01 +01:00
parent d4a0f4cda5
commit e0aa554153
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ CreateEditTaskDirective = ($repo, $model, $rs, $rootscope, $loading, lightboxSer
$scope.isNew = true
# Update texts for creation
$el.find(".button-green span").html("Create") #TODO: i18n
$el.find(".button-green").html("Create") #TODO: i18n
$el.find(".title").html("New task ") #TODO: i18n
$el.find(".tag-input").val("")
@ -51,7 +51,7 @@ CreateEditTaskDirective = ($repo, $model, $rs, $rootscope, $loading, lightboxSer
$scope.isNew = false
# Update texts for edition
$el.find(".button-green span").html("Save") #TODO: i18n
$el.find(".button-green").html("Save") #TODO: i18n
$el.find(".title").html("Edit task ") #TODO: i18n
$el.find(".tag-input").val("")