From 48649a0fc6dadc93fa1e7adb3d020b9cbe4aa4d6 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 31 Aug 2020 14:26:26 +0200 Subject: [PATCH] Bug 26324: Fix spelling resizable vs resizeable in Dopop The correct spelling of the parameter is resizable https://developer.mozilla.org/fr/docs/Web/API/Window/open Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer --- koha-tmpl/opac-tmpl/bootstrap/js/global.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/js/global.js b/koha-tmpl/opac-tmpl/bootstrap/js/global.js index a5ad0713e6..bde9d57966 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/js/global.js +++ b/koha-tmpl/opac-tmpl/bootstrap/js/global.js @@ -31,7 +31,7 @@ function confirmDelete(message) { } function Dopop(link) { - newin=window.open(link,'popup','width=500,height=400,toolbar=false,scrollbars=yes,resizeable=yes'); + newin=window.open(link,'popup','width=500,height=400,toolbar=false,scrollbars=yes,resizable=yes'); } jQuery.fn.preventDoubleFormSubmit = function() { -- 2.11.0