From 0fda4ee7891692b9e7d78f9edab5af48a0218be1 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Tue, 9 Jun 2015 03:01:08 +0200 Subject: [PATCH] Bug 14253: Acq - notify borrowers popup needs to allow scrolling The 'notify on receiving' patron search on the new order form in acquisitions didn't allow you to scroll, so there was no way to select users from the bottom of a longer result list. To test: - Create a new order in acquisitions - On the order form, use the 'Add user' button to open the popup - Perform a patron research with a lot of results - Verify that with the patch you can scroll, but that you couldn't without it --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt index 29018ac..b7f5074 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt @@ -165,7 +165,7 @@ $(document).ready(function() window.open( "/cgi-bin/koha/acqui/add_user_search.pl", 'UserSearchPopup', - 'width=740,height=450,toolbar=no,' + 'width=740, height=450, scrollbars=yes, toolbar=no,' ); } -- 1.9.1