fix
Signed-off-by: Jeff <jeff@gotenzing.com>
Showing
7 changed files
with
7 additions
and
7 deletions
| ... | @@ -103,7 +103,7 @@ foreach($posts as $post ) { | ... | @@ -103,7 +103,7 @@ foreach($posts as $post ) { |
| 103 | if($image): | 103 | if($image): |
| 104 | ?> | 104 | ?> |
| 105 | <div class='photo'> | 105 | <div class='photo'> |
| 106 | <img src='#' data-src="<?= $image ?>" class='lazy' alt='<?= $image_alt ?>' /> | 106 | <img src='<?= $image ?>' alt='<?= $image_alt ?>' loading="eager" /> |
| 107 | </div> | 107 | </div> |
| 108 | <?php endif; ?> | 108 | <?php endif; ?> |
| 109 | <div class='content'> | 109 | <div class='content'> | ... | ... |
| ... | @@ -26237,9 +26237,9 @@ | ... | @@ -26237,9 +26237,9 @@ |
| 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 | $('html, body, #page').animate({ | 26240 | setTimeout($('html, body, #page').animate({ |
| 26241 | scrollTop: $("#search-wrapper").offset().top - 250 | 26241 | scrollTop: $("#search-wrapper").offset().top - 250 |
| 26242 | }, 100); | 26242 | }, 100), 2000); |
| 26243 | }); | 26243 | }); |
| 26244 | }); | 26244 | }); |
| 26245 | document.addEventListener('wpcf7mailsent', function (event) { | 26245 | 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,13 +57,13 @@ jQuery(document).ready(function($) { | ... | @@ -57,13 +57,13 @@ 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 | $('html, body, #page').animate({ | 61 | $('html, body, #page').animate({ |
| 61 | scrollTop: $("#search-wrapper").offset().top - 250 | 62 | scrollTop: $("#search-wrapper").offset().top - 250 |
| 62 | }, 100); | 63 | }, 100) |
| 64 | , 2000); | ||
| 63 | }); | 65 | }); |
| 64 | 66 | ||
| 65 | |||
| 66 | |||
| 67 | }); | 67 | }); |
| 68 | 68 | ||
| 69 | 69 | ... | ... |
-
Please register or sign in to post a comment