From 6511ec4add159edb72959980056f63140dd386d9 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 8 Feb 2023 06:56:20 +0000 Subject: [PATCH] Bug 29173: (QA follow-up) Match pop-over sizes As suggested by David Nind, this patch updates the call to z3950 search on the authority edit page to match the sizing of the one from the details page. Signed-off-by: Martin Renvoize --- .../intranet-tmpl/prog/en/modules/authorities/authorities.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt index ebca79dbdfe..947821c647f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt @@ -52,7 +52,7 @@ var strQuery = GetZ3950Terms(); var index = "&index=[% index | html %]"; if(strQuery){ - window.open("/cgi-bin/koha/cataloguing/z3950_auth_search.pl?authid=[% authid | html %]"+strQuery+index,"z3950search",'width=740,height=450,location=yes,toolbar=no,scrollbars=yes,resize=yes'); + window.open("/cgi-bin/koha/cataloguing/z3950_auth_search.pl?authid=[% authid | html %]"+strQuery+index,"z3950search",'width=800,height=500,location=yes,toolbar=no,scrollbars=yes,resize=yes'); } return false; }); -- 2.39.1