a479b3d2 by Jeff Balicki

lazyload

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 2bb97bee
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.
......@@ -2,18 +2,13 @@
// Search Filter
import jquery from 'jquery';
import LazyLoad from "vanilla-lazyload";
var Search = (function($) {
function init() {
setTimeout(() => {
//$('.sf-label-radio:contains("All Categories")').parent('li').remove();
//$('.sf-label-radio:contains("Uncategorized")').parent('li').remove();
//$('.sf-label-radio:contains("News")').click();
}, "100");
$('.search-box').css('margin-right', $('#main-nav .container').css('margin-right'));
$('.search-box').css('opacity', '1');
......@@ -60,16 +55,7 @@ var Search = (function($) {
return false;
});
$(document).on("change",' #top-news-select input[type="radio"][name="_sft_category[]"]', function(e){
if (this.value == 'news') {
$('form input[type="radio"][name="_sft_category[]"][value="news"]').attr('checked', 'checked').trigger('change');
$('form input[type="radio"][name="_sft_category[]"][value="events"]').removeAttr('checked');
}
else if (this.value == 'events') {
$('form input[type="radio"][name="_sft_category[]"][value="events"]').attr('checked', 'checked').trigger('change');
$('form input[type="radio"][name="_sft_category[]"][value="news"]').removeAttr('checked');
}
});
$(document).on("keydown", "#top-search", function(e){
......
......@@ -116,6 +116,20 @@ jQuery(document).ready(function($) {
});
$(document).on("change",' #top-news-select input[type="radio"][name="_sft_category[]"]', function(e){
if (this.value == 'news') {
$('form input[type="radio"][name="_sft_category[]"][value="news"]').attr('checked', 'checked').trigger('change');
$('form input[type="radio"][name="_sft_category[]"][value="events"]').removeAttr('checked');
myLazyLoad.update();
}
else if (this.value == 'events') {
$('form input[type="radio"][name="_sft_category[]"][value="events"]').attr('checked', 'checked').trigger('change');
$('form input[type="radio"][name="_sft_category[]"][value="news"]').removeAttr('checked');
myLazyLoad.update();
}
});
document.addEventListener( 'wpcf7mailsent', function( event ) {
jQuery('.appArea.responsive').hide();
......
......@@ -2,5 +2,5 @@
Theme Name: MSF CA Child
Author: Tenzing Communications
Template: msf-ca
Version: 1.0.525
Version: 1.0.526
*/
\ No newline at end of file
......