Bugzilla – Attachment 160800 Details for
Bug 35753
Checkbox() function in additional-contents not necessary
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35753: Remove Checkbox() function
Bug-35753-Remove-Checkbox-function.patch (text/plain), 2.36 KB, created by
Jonathan Druart
on 2024-01-11 08:01:54 UTC
(
hide
)
Description:
Bug 35753: Remove Checkbox() function
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2024-01-11 08:01:54 UTC
Size:
2.36 KB
patch
obsolete
>From 944da170ff99b3b4146f2a0c196f6439d7166c79 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Tue, 9 Jan 2024 21:57:49 +0000 >Subject: [PATCH] Bug 35753: Remove Checkbox() function > >To test: >1. APPLY PATCH and clear browser cache. >2. Have multiple additional content items ( news/HTML customization/Pages ) >3. From one of the pages ( news/HTML customization/Pages ) click the 'Delete selected' button. Since no items are checked you should see the 'Please select content to delete' alert. >4. Check some items and click 'Delete selected' they should be correctly deleted. > >Note: There is no change in behavior from this patch. > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > .../prog/en/modules/tools/additional-contents.tt | 13 +------------ > 1 file changed, 1 insertion(+), 12 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt >index a7cd3d4be4c..30ffc479008 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt >@@ -568,17 +568,6 @@ > modalNumber = $(this).attr('data-number'); > $('.modal[data-number="'+modalNumber+'"]').modal('show'); > }) >- function Checkbox(){ >- var form = document.getElementById('del_form'); >- var inputs = form.getElementsByTagName('input'); >- var checked = false; >- for (var i=0; i<inputs.length; i++) { >- if (inputs[i].type == 'checkbox' && inputs[i].name == 'ids') { >- checked = inputs[i].checked; >- if (checked) return true; >- } >- } >- } > > function filterDataTable( table, column, term ){ > if( column ){ >@@ -631,7 +620,7 @@ > }); > > $("#del_form").on("submit",function(){ >- if ( Checkbox() ) { >+ if ( $('#del_form input[type="checkbox"][name="ids"]:checked').length ) { > return confirmDelete( _("Are you sure you want to delete the selected content?") ); > } else { > alert(_("Please select content to delete.")); >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 35753
:
160727
|
160800
|
161164