aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl
diff options
context:
space:
mode:
authorgit-marijus <mario@mariovavti.com>2017-08-24 20:13:11 +0200
committerGitHub <noreply@github.com>2017-08-24 20:13:11 +0200
commitdf2725a360f173d7521d8a552608014968763288 (patch)
tree4b21b79c07fd26125b60396a8326af58ea5917b3 /view/tpl
parent9d5b6858ea627b5eb6115cacd870ef0277f87b2a (diff)
parent592cf893c006f24c652902fa4fae7d2d94496c3c (diff)
downloadvolse-hubzilla-df2725a360f173d7521d8a552608014968763288.tar.gz
volse-hubzilla-df2725a360f173d7521d8a552608014968763288.tar.bz2
volse-hubzilla-df2725a360f173d7521d8a552608014968763288.zip
Merge pull request #848 from anaqreon/doco
Repaired and extended support for help page translations including ta…
Diffstat (limited to 'view/tpl')
-rw-r--r--view/tpl/help.tpl18
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>