1e6e5ac7 by Jeff Balicki

fix

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 1dec2541
......@@ -26237,9 +26237,12 @@
setTimeout(myLazyLoad.update(), 2000);
});
$(document).on("click", ".page-item ", function (e) {
setTimeout($('html, body, #page').animate({
scrollTop: $("#search-wrapper").offset().top - 250
}, 100), 2000);
setTimeout(function () {
$('html, body, #page').animate({
scrollTop: $("#search-wrapper").offset().top - 250
}, 100);
console.log('click');
}, 2000);
});
});
document.addEventListener('wpcf7mailsent', function (event) {
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -57,11 +57,12 @@ jQuery(document).ready(function($) {
$(document).on("click", ".page-item ", function(e){
setTimeout(
setTimeout(function(){
$('html, body, #page').animate({
scrollTop: $("#search-wrapper").offset().top - 250
}, 100)
, 2000);
}, 100);
console.log('click');
}, 2000);
});
});
......
......@@ -2,6 +2,6 @@
Theme Name: MSF CA Child
Author: Tenzing Communications
Template: msf-ca
Version: 1.0.478
Version: 1.0.479
*/
......