1e6e5ac7 by Jeff Balicki

fix

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 1dec2541
...@@ -26237,9 +26237,12 @@ ...@@ -26237,9 +26237,12 @@
26237 setTimeout(myLazyLoad.update(), 2000); 26237 setTimeout(myLazyLoad.update(), 2000);
26238 }); 26238 });
26239 $(document).on("click", ".page-item ", function (e) { 26239 $(document).on("click", ".page-item ", function (e) {
26240 setTimeout($('html, body, #page').animate({ 26240 setTimeout(function () {
26241 scrollTop: $("#search-wrapper").offset().top - 250 26241 $('html, body, #page').animate({
26242 }, 100), 2000); 26242 scrollTop: $("#search-wrapper").offset().top - 250
26243 }, 100);
26244 console.log('click');
26245 }, 2000);
26243 }); 26246 });
26244 }); 26247 });
26245 document.addEventListener('wpcf7mailsent', function (event) { 26248 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($) { ...@@ -57,11 +57,12 @@ jQuery(document).ready(function($) {
57 57
58 58
59 $(document).on("click", ".page-item ", function(e){ 59 $(document).on("click", ".page-item ", function(e){
60 setTimeout( 60 setTimeout(function(){
61 $('html, body, #page').animate({ 61 $('html, body, #page').animate({
62 scrollTop: $("#search-wrapper").offset().top - 250 62 scrollTop: $("#search-wrapper").offset().top - 250
63 }, 100) 63 }, 100);
64 , 2000); 64 console.log('click');
65 }, 2000);
65 }); 66 });
66 67
67 }); 68 });
......
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
2 Theme Name: MSF CA Child 2 Theme Name: MSF CA Child
3 Author: Tenzing Communications 3 Author: Tenzing Communications
4 Template: msf-ca 4 Template: msf-ca
5 Version: 1.0.478 5 Version: 1.0.479
6 */ 6 */
7 7
......