From 65035b950083a41d930ee689ad787917ceaa4981 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 Signed-off-by: Mirko Tietgen without patch: no scroll bar in Firefox 38 with patch: scrolling works fine --- 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.7.10.4