File: /home/bristolfilton.co.uk/public_html/wp-content/themes/cactus/assets/js/cactus.js
jQuery(document).ready(function($){
$(".site-nav-toggle").click(function(){
$(".site-nav").toggle();
});
var stickyTop = function(){
var stickyTop;
if ($("body.admin-bar").length) {
if ($(window).width() < 765) {
stickyTop = 46;
} else {
stickyTop = 32;
}
} else {
stickyTop = 0;
}
return stickyTop;
}
function fxdHeader(){
var headerPosition = $(".main-header").offset().top;
var stickyHeight = stickyTop();
if (headerPosition <= stickyHeight ) $(".main-header").removeClass("fxd-header");
else $(".main-header").addClass("fxd-header");
$('.fxd-header').css({ 'top': stickyHeight });
}
$(window).scroll(function(){
$(".main-header").addClass("fxd-header");
fxdHeader();
});
$('.comment-form #submit').addClass('btn-normal');
$('.comment-reply-link').addClass('pull-right btn-reply');
$('#back-to-top, .back-to-top').click(function() {
$('html, body').animate({ scrollTop:0 }, '800');
return false;
});
if ($(window).width() < 920) {
$('li.menu-item-has-children').prepend('<div class="menu-expand"></div>');
}else{
$('.site-nav .menu-expand').remove();
}
$(window).resize(function() {
if ($(window).width() < 920) {
$('li.menu-item-has-children').prepend('<div class="menu-expand"></div>');
}else{
$('.site-nav .menu-expand').remove();
}
});
$(document).on('click','.site-nav .menu-expand', function(){
$(this).siblings('ul').slideToggle();
});
});