From 219f126a317481725a478529afab281c96f4e4e1 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 Signed-off-by: Tomas Cohen Arazi (cherry picked from commit d25b7459b4ff4fd9f6acd539ab547fcb57dac6e0) Signed-off-by: Jacob O'Mara (cherry picked from commit 353d9dda3e4dfe6f8c446b50f73e3c489cf75d64) Signed-off-by: Lucas Gass (cherry picked from commit acdcc8a86cc6102f61d0f56b4c3b7a4299eb829b) Signed-off-by: Arthur Suzuki --- .../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 e9bcf3f8cb..dec4deb95a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt @@ -38,7 +38,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.5