From f8716027545add9ac89ff52674d44856b4d12856 Mon Sep 17 00:00:00 2001 From: Peter 'Pita' Martischka Date: Thu, 14 Jul 2011 18:38:29 +0100 Subject: [PATCH] remove the 32000 px lock, thx to @smesher --- static/js/ace2_inner.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/static/js/ace2_inner.js b/static/js/ace2_inner.js index 8be6e7ff5..1575fc9ad 100644 --- a/static/js/ace2_inner.js +++ b/static/js/ace2_inner.js @@ -4655,8 +4655,6 @@ function OUTER(gscope) { if (newWidth < viewWidth) newWidth = viewWidth; } - if (newHeight > 32000) newHeight = 32000; - if (newWidth > 32000) newWidth = 32000; setIfNecessary(iframe.style, "height", newHeight + "px"); setIfNecessary(iframe.style, "width", newWidth + "px"); setIfNecessary(sideDiv.style, "height", newHeight + "px");