1f09e7ad23
1. Add template category 'end' that places content right before final </body> tag 2. Move most Javascript from tpl files into one cacheable file, theme.js 3. Load scripts at end of the HTML document instead of in the header 4. Minify several Javascript files Note that the second and third things were only done for Frost and Frost Mobile. Doing it for every theme means going through every .tpl for every theme and rearranging the Javascript, which is tedious.
23 lines
530 B
Smarty
23 lines
530 B
Smarty
<div id="acl-wrapper">
|
|
<input id="acl-search">
|
|
<a href="#" id="acl-showall">$showall</a>
|
|
<div id="acl-list">
|
|
<div id="acl-list-content">
|
|
</div>
|
|
</div>
|
|
<span id="acl-fields"></span>
|
|
</div>
|
|
|
|
<div class="acl-list-item" rel="acl-template" style="display:none">
|
|
<img src="{0}"><p>{1}</p>
|
|
<a href="#" class='acl-button-show'>$show</a>
|
|
<a href="#" class='acl-button-hide'>$hide</a>
|
|
</div>
|
|
|
|
<script>
|
|
window.allowCID = $allowcid;
|
|
window.allowGID = $allowgid;
|
|
window.denyCID = $denycid;
|
|
window.denyGID = $denygid;
|
|
</script>
|