From bcabcdeb9ea10773277d4eade27c50a79d6bc42a Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 15 Feb 2022 11:22:02 +0000 Subject: [PATCH] Bug 30055: (follow-up) Increase popup window size With the required addition of fields to the displayed result table, we need to increase the size of the popover window to prevent horizontal scrolling. --- koha-tmpl/intranet-tmpl/prog/js/members.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/members.js b/koha-tmpl/intranet-tmpl/prog/js/members.js index 5559ac0363..1cbf1c5c1b 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/members.js +++ b/koha-tmpl/intranet-tmpl/prog/js/members.js @@ -197,7 +197,7 @@ $(document).ready(function(){ $('body').on('click', '#guarantor_search', function(e) { e.preventDefault(); - var newin = window.open('/cgi-bin/koha/members/search.pl?columns=cardnumber,name,category,branch,dateofbirth,address,action','popup','width=800,height=600,resizable=no,toolbar=false,scrollbars=yes,top'); + var newin = window.open('/cgi-bin/koha/members/search.pl?columns=cardnumber,name,category,branch,dateofbirth,address,action','popup','width=1024,height=768,resizable=no,toolbar=false,scrollbars=yes,top'); }); $('#guarantor_relationships').on('click', '.guarantor_cancel', function(e) { -- 2.20.1