publik-base-theme/static/hautes-alpes-2018/extra.js

10 lines
326 B
JavaScript

/* globals $, window */
$(function() {
$('div.wcsformsofcategorycell').delegate('h2', 'click', function() {
$(this).parents('div.wcsformsofcategorycell').toggleClass('toggled');
$(this).toggleClass('on');
});
$(window).on('load', function () {
$('#page').css('margin-top', $('#header-wrapper').css('height'));
});
})