nguyen dung 39b8cb3612 init
2022-02-18 16:43:41 +07:00

11 lines
364 B
JavaScript

Flatsome.behavior('wp-rocket-lazy-load-packery', {
attach: function (context) {
jQuery('.has-packery .lazy-load', context).waypoint(function (direction) {
var $element = jQuery(this.element);
$element.imagesLoaded( function() {
jQuery('.has-packery').packery('layout');
});
}, { offset: '90%' });
}
});