Skip to content
This repository has been archived by the owner on Jul 9, 2018. It is now read-only.

Bugfix #239: Remove max height in ace #282

Merged
merged 1 commit into from Jul 14, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions infrastructure/ace/www/ace2_inner.js
Expand Up @@ -3724,8 +3724,6 @@ function OUTER(gscope) {
else {
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");
Expand Down