Replace left and bottom arrow icons by plus and minus icons

This commit is contained in:
Louis Bailleul
2015-11-19 12:01:10 +00:00
parent 493e0f33e3
commit db37acbe83
2 changed files with 4 additions and 4 deletions

View File

@ -143,12 +143,12 @@ $(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-triangle-right"))
if(button.hasClass("glyphicon-plus"))
{
button.addClass('glyphicon-triangle-bottom').removeClass('glyphicon-triangle-right');
button.addClass('glyphicon-minus').removeClass('glyphicon-plus');
}else
{
button.addClass('glyphicon-triangle-right').removeClass('glyphicon-triangle-bottom');
button.addClass('glyphicon-plus').removeClass('glyphicon-minus');
}
list.toggle();