From cad5917eebee69e30610d745e4ce191a5413bc16 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Tue, 5 May 2015 21:47:37 +0100 Subject: [PATCH] Request scrollbars in external windows --- core/modules/startup/windows.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/startup/windows.js b/core/modules/startup/windows.js index d2a5517e3..40fca87b7 100644 --- a/core/modules/startup/windows.js +++ b/core/modules/startup/windows.js @@ -32,7 +32,7 @@ exports.startup = function() { width = paramObject.width || "700", height = paramObject.height || "600"; // Open the window - var srcWindow = window.open("","external-" + title,"width=" + width + ",height=" + height), + var srcWindow = window.open("","external-" + title,"scrollbars,width=" + width + ",height=" + height), srcDocument = srcWindow.document; windows[title] = srcWindow; // Check for reopening the same window