Skip to content
Snippets Groups Projects
Commit 2e8fe0bd authored by Jacob Schatz's avatar Jacob Schatz
Browse files

Add JS style changes.

Thanks @rspeicher
parent 80812a5d
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -232,7 +232,8 @@ $ ->
$this = $(this)
$thisIcon = $this.find 'i'
if $thisIcon.hasClass('fa-angle-double-right')
$thisIcon.removeClass('fa-angle-double-right')
$thisIcon
.removeClass('fa-angle-double-right')
.addClass('fa-angle-double-left')
$this
.closest('aside')
Loading
Loading
@@ -242,7 +243,8 @@ $ ->
.removeClass('right-sidebar-expanded')
.addClass('right-sidebar-collapsed')
else
$thisIcon.removeClass('fa-angle-double-left')
$thisIcon
.removeClass('fa-angle-double-left')
.addClass('fa-angle-double-right')
$this
.closest('aside')
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment