mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00:00
[ticket/12372] Use admin.js $(document).ready for hiding questionnaire details
PHPBB3-12372
This commit is contained in:
parent
91a1c3af90
commit
b2eef2f5f9
2 changed files with 4 additions and 7 deletions
|
@ -61,11 +61,4 @@ function iframe_updated()
|
||||||
<p><strong>{L_THANKS_SEND_STATISTICS}</strong><br /><br /><a href="{U_ACP_MAIN}">« {L_GO_ACP_MAIN}</a></p>
|
<p><strong>{L_THANKS_SEND_STATISTICS}</strong><br /><br /><a href="{U_ACP_MAIN}">« {L_GO_ACP_MAIN}</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
//<![CDATA[
|
|
||||||
phpbb.toggleDisplay('configlist', -1);
|
|
||||||
phpbb.toggleDisplay('questionnaire-thanks', -1);
|
|
||||||
//]]>
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<!-- INCLUDE overall_footer.html -->
|
<!-- INCLUDE overall_footer.html -->
|
||||||
|
|
|
@ -242,5 +242,9 @@ function parse_document(container)
|
||||||
});
|
});
|
||||||
|
|
||||||
parse_document($('body'));
|
parse_document($('body'));
|
||||||
|
|
||||||
|
// Hide configlist and success message in send statistics page
|
||||||
|
phpbb.toggleDisplay('configlist', -1);
|
||||||
|
phpbb.toggleDisplay('questionnaire-thanks', -1);
|
||||||
});
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
|
Loading…
Add table
Reference in a new issue