1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-23 03:25:18 +02:00

Merge remote-tracking branch 'cyberalien/ticket/10860' into develop-olympus

* cyberalien/ticket/10860:
  [ticket/10860] Fixing js error in updater
This commit is contained in:
Andreas Fischer
2012-05-06 18:39:23 +02:00

View File

@ -15,12 +15,12 @@
// <![CDATA[
function resize_panel()
{
var block = document.getElementById('codepanel');
var block = document.getElementById('diff_content');
var height;
if (window.innerHeight)
{
height = window.innerHeight - 150;
height = window.innerHeight - 200;
block.style.height = height + 'px';
}
else