From 9e8c3665aeb5f03129ef11d82aa7fe602cba4524 Mon Sep 17 00:00:00 2001 From: Chloe Date: Mon, 18 Jan 2016 22:31:19 +0000 Subject: [PATCH] Bug 14613 Send cart window is too small in staff and hides 'send' button To Test: Add an item to cart click "cart" click "send" confirm that the send window is larger and the send button is visible NOTE: Remember to clear cache to refresh javascripts. This is much more visible if you zoom in 10% or more. This is larger, but more of a stop gap if you've got a large zoom. Signed-off-by: Mark Tompsett --- koha-tmpl/intranet-tmpl/prog/en/js/basket.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/basket.js b/koha-tmpl/intranet-tmpl/prog/en/js/basket.js index 1c9e0a1..3e5676c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/basket.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/basket.js @@ -337,7 +337,7 @@ function sendBasket() { var loc = CGIBIN + "basket/sendbasket.pl?" + strCookie; - var optWin="scrollbars=no,resizable=no,height=300,width=450,top=50,left=100"; + var optWin="scrollbars=no,resizable=no,height=400,width=650,top=50,left=100"; var win_form = open(loc,"win_form",optWin); } -- 2.1.4