diff options
author | zotlabs <mike@macgirvin.com> | 2016-12-20 14:31:22 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-20 14:31:22 +1100 |
commit | 66e84b68fc51233c97b3b5977a4f55b7d5a33a6e (patch) | |
tree | ddbc84d38decce71e8f9564cf5d3d2a9ecb67b49 /view/tpl/help.tpl | |
parent | 87248c9f47dca9f3862332430cc2f4e6160bb85a (diff) | |
parent | 3d18f1447ef22b297415fe1e1ce50b885c6f2e43 (diff) | |
download | volse-hubzilla-66e84b68fc51233c97b3b5977a4f55b7d5a33a6e.tar.gz volse-hubzilla-66e84b68fc51233c97b3b5977a4f55b7d5a33a6e.tar.bz2 volse-hubzilla-66e84b68fc51233c97b3b5977a4f55b7d5a33a6e.zip |
Merge pull request #623 from anaqreon/2.0RC-doco
Headings restructuring and some content rearrangement
Diffstat (limited to 'view/tpl/help.tpl')
-rw-r--r-- | view/tpl/help.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/tpl/help.tpl b/view/tpl/help.tpl index 8eb53417a..15d8548a3 100644 --- a/view/tpl/help.tpl +++ b/view/tpl/help.tpl @@ -3,10 +3,10 @@ <h2>{{$title}}: {{$heading}}</h2> </div> <div class="section-content-wrapper" id="doco-content"> - <h1 class="fakelink" id="doco-top-toc-heading"><span onclick="docoTocToggle(); return false;"> + <h3 class="fakelink" id="doco-top-toc-heading"><span onclick="docoTocToggle(); return false;"> <i class="fakelink fa fa-caret-right" id="doco-toc-toggle"></i> {{$tocHeading}} - </span></h1> + </span></h3> <ul id="doco-top-toc" style="margin-bottom: 1.5em; display: none;"></ul> {{$content}} </div> @@ -16,7 +16,7 @@ // 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: "h1,h2,h3,h4"}); + $('#doco-top-toc').toc({content: "#doco-content", headings: "h3,h4,h5,h6"}); }); function docoTocToggle() { |