Skip to content

Commit

Permalink
[#939] Fixed consistent button representation
Browse files Browse the repository at this point in the history
  • Loading branch information
loicsans committed Jan 9, 2015
1 parent a3ee4c3 commit eda67ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions akvo/templates/project_directory.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
</div>
</div>
<div>
<a class="btn showFilters btn-default menu-toggle"><i class="fa fa-angle-double-left"></i> Advanced filters</a>
<a class="btn showFilters btn-default menu-toggle"><i class="fa fa-toggle-off"></i> Advanced filters</a>
</div>
</div>
</aside>
Expand Down Expand Up @@ -168,6 +168,6 @@ <h4 class="detailedInfo">{% trans "Finance" %}</h4>
$(".menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
$("i").toggleClass("fa-toggle-off fa-toggle-on");
$("a.showFilters > i").toggleClass("fa-toggle-off fa-toggle-on");
});
{% endblock %}

0 comments on commit eda67ee

Please sign in to comment.