diff options
Diffstat (limited to 'view/tpl/help.tpl')
-rw-r--r-- | view/tpl/help.tpl | 4 |
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(); |