From 9fddbc045da2dc25389e924262bd8f6e2bc99bfd Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Thu, 7 Apr 2016 07:43:21 +0200 Subject: [PATCH] Bug 15868: Ask for confirmation when deleting a MMT action Test plan: Create marc modification template Add an action Delete it With this patch you must get a confirmation mesg Signed-off-by: Julian Maurice --- .../prog/en/modules/tools/marc_modification_templates.tt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt index 0dcaab9..6343291 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt @@ -194,9 +194,12 @@ function clearFormElements(divId) { } +function confirmDeleteAction() { + return confirm(_("Are you sure you wish to delete this template action?")); +} + function confirmDelete() { - var agree = confirm(_("Are you sure you wish to delete this template?")); - return agree; + return confirm(_("Are you sure you wish to delete this template?")); } var modaction_legend_innerhtml; @@ -443,7 +446,7 @@ function setSelectByValue( selectId, value ) { "[% ActionsLoo.conditional_regex |replace('\\\\', '\\\\') |replace("'", "\'") |replace('"', '\"') |replace('\n', '\\n') |replace('\r', '\\r') %]", "[% ActionsLoo.description |replace('\\\\', '\\\\') |replace("'", "\'") |replace('"', '\"') |replace('\n', '\\n') |replace('\r', '\\r') %]" );updateAllEvery();'>Edit - Delete + Delete [% END %] -- 2.1.4