aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/help.tpl
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-03-10 17:02:55 +0100
committerMario Vavti <mario@mariovavti.com>2017-03-10 17:02:55 +0100
commit0f9ddbf3b2509ef4651a9b58d008330d6bc8cfd9 (patch)
tree1bfba6455a431f153a9b2b7aa682e495085e9990 /view/tpl/help.tpl
parentb1c97dfcfd80263f94733d0ec6c357eebc5a57da (diff)
downloadvolse-hubzilla-0f9ddbf3b2509ef4651a9b58d008330d6bc8cfd9.tar.gz
volse-hubzilla-0f9ddbf3b2509ef4651a9b58d008330d6bc8cfd9.tar.bz2
volse-hubzilla-0f9ddbf3b2509ef4651a9b58d008330d6bc8cfd9.zip
fixing classes
Diffstat (limited to 'view/tpl/help.tpl')
-rw-r--r--view/tpl/help.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/help.tpl b/view/tpl/help.tpl
index 10e0a4957..61c2b44b2 100644
--- a/view/tpl/help.tpl
+++ b/view/tpl/help.tpl
@@ -22,9 +22,9 @@
function docoTocToggle() {
if($('#doco-top-toc').is(':visible')) {
- $('#doco-toc-toggle').removeClass('fa-caret-down').addClass('fa-caret-right');
+ $('#doco-toc-toggle').removeClass('fa-cog').addClass('fa-caret-right');
} else {
- $('#doco-toc-toggle').removeClass('fa-caret-right').addClass('fa-caret-down');
+ $('#doco-toc-toggle').removeClass('fa-caret-right').addClass('fa-cog');
}
$('#doco-top-toc').toggle();