Commit 2e8fe0bd authored by Jacob Schatz's avatar Jacob Schatz

Add JS style changes.

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