diff options
author | Andrew Manning <andrewmanning@grid.reticu.li> | 2017-08-23 03:33:03 +0000 |
---|---|---|
committer | Andrew Manning <andrewmanning@grid.reticu.li> | 2017-08-23 03:33:03 +0000 |
commit | 6c388575022cc10f28ed99e8e414fbc76a67bb00 (patch) | |
tree | 49bc3d01e54023855ae95a124efda3d822ab576a /view/tpl | |
parent | 9d5b6858ea627b5eb6115cacd870ef0277f87b2a (diff) | |
download | volse-hubzilla-6c388575022cc10f28ed99e8e414fbc76a67bb00.tar.gz volse-hubzilla-6c388575022cc10f28ed99e8e414fbc76a67bb00.tar.bz2 volse-hubzilla-6c388575022cc10f28ed99e8e414fbc76a67bb00.zip |
Repaired and extended support for help page translations including table of contents files at the top level. Moved help module javascript to mod_help.js.
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/help.tpl | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/view/tpl/help.tpl b/view/tpl/help.tpl index 43b061dcc..31e5b9794 100644 --- a/view/tpl/help.tpl +++ b/view/tpl/help.tpl @@ -13,21 +13,3 @@ {{$content}} </div> </div> - -<script> - // Generate the table of contents in the side nav menu (see view/tpl/help.tpl) - $(document).ready(function () { - $('#doco-top-toc').toc({content: "#doco-content", headings: "h3,h4,h5,h6"}); - }); - - function docoTocToggle() { - if($('#doco-top-toc').is(':visible')) { - $('#doco-toc-toggle').removeClass('fa-cog').addClass('fa-caret-right'); - } else { - $('#doco-toc-toggle').removeClass('fa-caret-right').addClass('fa-caret-down'); - } - $('#doco-top-toc').toggle(); - - return false; - } -</script> |