aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/quickreply_editor.html
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2009-07-11 14:28:43 +0000
committerHenry Sudhof <kellanved@phpbb.com>2009-07-11 14:28:43 +0000
commitc9fa6a8cb965952f7e1d464336bc587877a8c9c1 (patch)
tree7380398173942c9d6713902b26a3645eec50cbce /phpBB/styles/prosilver/template/quickreply_editor.html
parent54ee31972af4f84e09ad5b12ca512e5712bbd87a (diff)
downloadforums-c9fa6a8cb965952f7e1d464336bc587877a8c9c1.tar
forums-c9fa6a8cb965952f7e1d464336bc587877a8c9c1.tar.gz
forums-c9fa6a8cb965952f7e1d464336bc587877a8c9c1.tar.bz2
forums-c9fa6a8cb965952f7e1d464336bc587877a8c9c1.tar.xz
forums-c9fa6a8cb965952f7e1d464336bc587877a8c9c1.zip
use existing function
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9749 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/prosilver/template/quickreply_editor.html')
-rw-r--r--phpBB/styles/prosilver/template/quickreply_editor.html8
1 files changed, 3 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/template/quickreply_editor.html b/phpBB/styles/prosilver/template/quickreply_editor.html
index a79cf4f9f8..506a3b945d 100644
--- a/phpBB/styles/prosilver/template/quickreply_editor.html
+++ b/phpBB/styles/prosilver/template/quickreply_editor.html
@@ -2,13 +2,11 @@
// <![CDATA[
function hide_qr(hide)
{
- var qr = document.getElementById('qr_editor_div');
- var qr_show = document.getElementById('qr_showeditor_div');
- qr_show.style.display = (hide) ? '' : 'none';
- qr.style.display = (hide) ? 'none' : '';
+ dE('qr_editor_div');
+ dE('qr_showeditor_div');
return true;
}
-
+
onload_functions.push('hide_qr(true);');
// ]]>
</script>