From ac07a5074f3a77f1af691af40ce67facdcd43685 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 4 Apr 2018 13:35:35 -0300 Subject: [PATCH] Bug 19817: Open the manual in a new window, not a popup Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens --- koha-tmpl/intranet-tmpl/prog/js/staff-global.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js b/koha-tmpl/intranet-tmpl/prog/js/staff-global.js index fbbeed623f..3712e656ee 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js +++ b/koha-tmpl/intranet-tmpl/prog/js/staff-global.js @@ -114,7 +114,7 @@ function logOut(){ } function openHelp(){ - openWindow("/cgi-bin/koha/help.pl","KohaHelp",600,600); + window.open( "/cgi-bin/koha/help.pl", "_blank"); } jQuery.fn.preventDoubleFormSubmit = function() { -- 2.20.1