|
|
|
@@ -36,18 +36,10 @@ jQuery(document).ready(function($){ |
|
|
|
//ev.preventDefault(); |
|
|
|
|
|
|
|
$(this).toggleClass('chevron--down chevron--up'); |
|
|
|
if(!expand) |
|
|
|
{ |
|
|
|
$(this).closest(".position-cont").find(".collapse").addClass("show"); |
|
|
|
$(this).closest(".position").css({"background-color": "#993c95", "color": "white"}); |
|
|
|
|
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
$(this).closest(".position-cont").find(".collapse").removeClass("show"); |
|
|
|
$(this).closest(".position").css({"background-color": "#fff", "color": "#000"}); |
|
|
|
|
|
|
|
} |
|
|
|
$(this).closest(".position-cont").find(".collapse").toggleClass("show"); |
|
|
|
|
|
|
|
$(this).closest(".position").toggleClass("active"); //css({"background-color": "#993c95", "color": "white"}); |
|
|
|
|
|
|
|
|
|
|
|
expand= !expand; |
|
|
|
}); |