f47b5413 by Jeff Balicki

qa

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent d6052621
...@@ -26450,11 +26450,15 @@ ...@@ -26450,11 +26450,15 @@
26450 if (this.value == 'news') { 26450 if (this.value == 'news') {
26451 $('form input[type="radio"][name="_sft_category[]"][value="news"]').attr('checked', 'checked').trigger('change'); 26451 $('form input[type="radio"][name="_sft_category[]"][value="news"]').attr('checked', 'checked').trigger('change');
26452 $('form input[type="radio"][name="_sft_category[]"][value="events"]').removeAttr('checked'); 26452 $('form input[type="radio"][name="_sft_category[]"][value="events"]').removeAttr('checked');
26453 setTimeout(function () {
26453 myLazyLoad.update(); 26454 myLazyLoad.update();
26455 }, 100);
26454 } else if (this.value == 'events') { 26456 } else if (this.value == 'events') {
26455 $('form input[type="radio"][name="_sft_category[]"][value="events"]').attr('checked', 'checked').trigger('change'); 26457 $('form input[type="radio"][name="_sft_category[]"][value="events"]').attr('checked', 'checked').trigger('change');
26456 $('form input[type="radio"][name="_sft_category[]"][value="news"]').removeAttr('checked'); 26458 $('form input[type="radio"][name="_sft_category[]"][value="news"]').removeAttr('checked');
26459 setTimeout(function () {
26457 myLazyLoad.update(); 26460 myLazyLoad.update();
26461 }, 100);
26458 } 26462 }
26459 }); 26463 });
26460 }); 26464 });
......
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.
...@@ -98,12 +98,16 @@ jQuery(document).ready(function($) { ...@@ -98,12 +98,16 @@ jQuery(document).ready(function($) {
98 if (this.value == 'news') { 98 if (this.value == 'news') {
99 $('form input[type="radio"][name="_sft_category[]"][value="news"]').attr('checked', 'checked').trigger('change'); 99 $('form input[type="radio"][name="_sft_category[]"][value="news"]').attr('checked', 'checked').trigger('change');
100 $('form input[type="radio"][name="_sft_category[]"][value="events"]').removeAttr('checked'); 100 $('form input[type="radio"][name="_sft_category[]"][value="events"]').removeAttr('checked');
101 setTimeout(function(){
101 myLazyLoad.update(); 102 myLazyLoad.update();
103 }, 100);
102 } 104 }
103 else if (this.value == 'events') { 105 else if (this.value == 'events') {
104 $('form input[type="radio"][name="_sft_category[]"][value="events"]').attr('checked', 'checked').trigger('change'); 106 $('form input[type="radio"][name="_sft_category[]"][value="events"]').attr('checked', 'checked').trigger('change');
105 $('form input[type="radio"][name="_sft_category[]"][value="news"]').removeAttr('checked'); 107 $('form input[type="radio"][name="_sft_category[]"][value="news"]').removeAttr('checked');
108 setTimeout(function(){
106 myLazyLoad.update(); 109 myLazyLoad.update();
110 }, 100);
107 } 111 }
108 }); 112 });
109 113
......
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
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.528 5 Version: 1.0.529
6 */ 6 */
...\ No newline at end of file ...\ No newline at end of file
......