Bug 26755: Make the guarantor search popup taller
authorOwen Leonard <oleonard@myacpl.org>
Fri, 22 Jan 2021 15:20:00 +0000 (15:20 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 28 Jan 2021 16:32:53 +0000 (17:32 +0100)
This patch changes the dimensions of the popup window in which
guarantors are chosen during the patron edit process.

The patch also removes an obsolete function delcaration for "Dopop"
which is unused.

To test, apply the patch and open a "child" type patron account for
editing.

Click the "Add guarantor" button. This should trigger a popup window.
Eyeball the size of the window, you'll be able to tell that it is
exactly 800 pixels wide.

Signed-off-by: Barbara Johnson <barbara.johnson@bedfordtx.gov>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
koha-tmpl/intranet-tmpl/prog/js/members.js

index f38870cc48c0aa221b39c5e3165c820b3b908568..df9b82d96239031e5aa941a51ec0b038499b17c4 100644 (file)
@@ -34,11 +34,6 @@ function check_form_borrowers(nav){
     }
 }
 
-function Dopop(link) {
-// //   var searchstring=document.form.value[i].value;
-    var newin=window.open(link,'popup','width=600,height=400,resizable=no,toolbar=false,scrollbars=no,top');
-}
-
 function clear_entry(node) {
     var original = $(node).parent();
     $("textarea", original).attr('value', '');
@@ -196,7 +191,7 @@ $(document).ready(function(){
 
     $('body').on('click', '#guarantor_search', function(e) {
         e.preventDefault();
-        var newin = window.open('guarantor_search.pl','popup','width=600,height=400,resizable=no,toolbar=false,scrollbars=yes,top');
+        var newin = window.open('guarantor_search.pl','popup','width=800,height=600,resizable=no,toolbar=false,scrollbars=yes,top');
     });
 
     $('#guarantor_relationships').on('click', '.guarantor_cancel', function(e) {