diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2012-05-06 19:37:49 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2012-05-06 19:37:49 +0300 |
commit | a960bd6790a60bd1023e632230848e9e786c8921 (patch) | |
tree | eac124c09917adae9f10c4a95069d920899102ae | |
parent | 8cb0e30afc54b419450c8144ae1e80c6b8f9826a (diff) | |
download | forums-a960bd6790a60bd1023e632230848e9e786c8921.tar forums-a960bd6790a60bd1023e632230848e9e786c8921.tar.gz forums-a960bd6790a60bd1023e632230848e9e786c8921.tar.bz2 forums-a960bd6790a60bd1023e632230848e9e786c8921.tar.xz forums-a960bd6790a60bd1023e632230848e9e786c8921.zip |
[ticket/10860] Fixing js error in updater
Fixing javascript error in side-by-side diff styling in updater:
resizing inner block instead of outer block and increasing
height by inner/outer block difference.
PHPBB3-10860
-rw-r--r-- | phpBB/adm/style/install_update_diff.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/install_update_diff.html b/phpBB/adm/style/install_update_diff.html index b65a014312..15ea00141d 100644 --- a/phpBB/adm/style/install_update_diff.html +++ b/phpBB/adm/style/install_update_diff.html @@ -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 |