I found in global.js
bender.toggleClass = function(element,destination,isObject) {
var $selector = $('['+element+']');
$selector.click(function (event) {
var thatClass = $(this).attr(element);
var thatDestination;
if (typeof(isObject) != "undefined"){
var thatDestination = $(destination);
} else {
var thatDestination = $($(this).attr(destination));
}
thatDestination.toggleClass(thatClass);
event.preventDefault();
return;
});
}
and
bender.toggleClass('data-bclass-toggle','body',true);
This is adding/removing the display-cat class to body tag in contact or page type page when the header "button" is clicked.
What and where to change to extend it's effect on home page to, but only @ under 480 px;