From 7a684660e9a1854a067319c9e639defd7f7175da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Sevilla=20Mart=C3=ADn?= <6401250+datitisev@users.noreply.github.com> Date: Tue, 1 Oct 2019 17:37:42 -0400 Subject: [PATCH] Enable scrollbars in login button popups (#1900) Fixes #1716 --- js/src/forum/components/LogInButton.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/forum/components/LogInButton.js b/js/src/forum/components/LogInButton.js index c8e418bc7..bb2160dde 100644 --- a/js/src/forum/components/LogInButton.js +++ b/js/src/forum/components/LogInButton.js @@ -22,7 +22,7 @@ export default class LogInButton extends Button { `height=${height},` + `top=${$window.height() / 2 - height / 2},` + `left=${$window.width() / 2 - width / 2},` + - 'status=no,scrollbars=no,resizable=no'); + 'status=no,scrollbars=yes,resizable=no'); }; super.initProps(props);