diff options
author | Błażej Kardyś <bkardys@virtuslab.com> | 2020-07-24 15:21:51 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-07-27 09:15:47 +0200 |
commit | 56a09627842a814f57ec193b1a927507c50fdf0d (patch) | |
tree | f0208aef7e3bd20696f6ae9d320f58cb92dd049f /plugins/javadoc | |
parent | e797533624293ada87eae41331b97df87101f366 (diff) | |
download | dokka-56a09627842a814f57ec193b1a927507c50fdf0d.tar.gz dokka-56a09627842a814f57ec193b1a927507c50fdf0d.tar.bz2 dokka-56a09627842a814f57ec193b1a927507c50fdf0d.zip |
Disabling not working links for navigation menu
Diffstat (limited to 'plugins/javadoc')
-rw-r--r-- | plugins/javadoc/src/main/resources/views/components/navList.korte | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/javadoc/src/main/resources/views/components/navList.korte b/plugins/javadoc/src/main/resources/views/components/navList.korte index 1bee80be..e27bdecb 100644 --- a/plugins/javadoc/src/main/resources/views/components/navList.korte +++ b/plugins/javadoc/src/main/resources/views/components/navList.korte @@ -6,6 +6,8 @@ {% endif -%} {%- if kind == "package" %} <li class="navBarCell1Rev">Package</li> + {% elseif kind == "main" %} + <li>Package</li> {% else %} <li><a href="package-summary.html">Package</a></li> {% endif -%} @@ -19,7 +21,7 @@ {% else %} <li><a href="package-tree.html">Tree</a></li> {% end %} - <li><a href="{{ pathToRoot }}deprecated-list.html">Deprecated</a></li> - <li><a href="{{ pathToRoot }}index-all.html">Index</a></li> - <li><a href="{{ pathToRoot }}help-doc.html">Help</a></li> + <li>Deprecated</li> + <li>Index</li> + <li>Help</li> </ul>
\ No newline at end of file |