aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/simple_header.html
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-04-14 12:33:33 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-04-14 12:33:33 +0200
commitaebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3 (patch)
tree4bf2f4508035982faf946bb1136a76f689bc22c8 /phpBB/adm/style/simple_header.html
parent3ce479f061ce46ad8f1ac3c99a02459ff2b4b2d2 (diff)
parentfbeed2d975b4c080d3f391226b9b69b61f55aa23 (diff)
downloadforums-aebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3.tar
forums-aebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3.tar.gz
forums-aebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3.tar.bz2
forums-aebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3.tar.xz
forums-aebf2cc5cd5b76b3cc42b819dc446afb7cdbbad3.zip
Merge remote-tracking branch 'marc/ticket/12372' into develop-ascraeus
* marc/ticket/12372: [ticket/12372] Use $() instead of jQuery() in core.js for toggleDisplay [ticket/12372] Use admin.js $(document).ready for hiding questionnaire details [ticket/12372] Rename JS function dE() to phpbb.toggleDisplay() [ticket/12372] Move dE() function core.js [ticket/12372] Unify definition of function dE() across all files [ticket/12372] Use jQuery in javascript dE() function
Diffstat (limited to 'phpBB/adm/style/simple_header.html')
-rw-r--r--phpBB/adm/style/simple_header.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/phpBB/adm/style/simple_header.html b/phpBB/adm/style/simple_header.html
index fd5145f0d5..ae25f28d32 100644
--- a/phpBB/adm/style/simple_header.html
+++ b/phpBB/adm/style/simple_header.html
@@ -49,25 +49,6 @@ function jumpto()
}
/**
-* Set display of page element
-* s[-1,0,1] = hide,toggle display,show
-*/
-function dE(n, s, type)
-{
- if (!type)
- {
- type = 'block';
- }
-
- var e = document.getElementById(n);
- if (!s)
- {
- s = (e.style.display == '') ? -1 : 1;
- }
- e.style.display = (s == 1) ? type : 'none';
-}
-
-/**
* Mark/unmark checkboxes
* id = ID of parent container, name = name prefix, state = state [true/false]
*/