Move to Font Awesome

Keeps the look more in line with the navigation bar icons.
In the future with Bootstrap 4, Glyphicons will not be included, so this
starts the transistions away.
This commit is contained in:
Bennett Blodinger
2016-09-22 10:44:17 -04:00
parent 2ec3132c64
commit 07574b27d8
24 changed files with 222 additions and 145 deletions

View File

@@ -213,11 +213,11 @@ $(document).on("click", '.collapse-neighbors', function(event)
var list = caller.find('.neighbors-interface-list');
var continued = caller.find('.neighbors-list-continued');
if(button.hasClass("glyphicon-plus")) {
button.addClass('glyphicon-minus').removeClass('glyphicon-plus');
if(button.hasClass("fa-plus")) {
button.addClass('fa-minus').removeClass('fa-plus');
}
else {
button.addClass('glyphicon-plus').removeClass('glyphicon-minus');
button.addClass('fa-plus').removeClass('fa-minus');
}
list.toggle();