mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
use existing function
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9749 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
54ee31972a
commit
c9fa6a8cb9
1 changed files with 3 additions and 5 deletions
|
@ -2,13 +2,11 @@
|
||||||
// <![CDATA[
|
// <![CDATA[
|
||||||
function hide_qr(hide)
|
function hide_qr(hide)
|
||||||
{
|
{
|
||||||
var qr = document.getElementById('qr_editor_div');
|
dE('qr_editor_div');
|
||||||
var qr_show = document.getElementById('qr_showeditor_div');
|
dE('qr_showeditor_div');
|
||||||
qr_show.style.display = (hide) ? '' : 'none';
|
|
||||||
qr.style.display = (hide) ? 'none' : '';
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
onload_functions.push('hide_qr(true);');
|
onload_functions.push('hide_qr(true);');
|
||||||
// ]]>
|
// ]]>
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue