HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Apache24/htdocs/wp-content/themes/simone/js/masonry-settings.js
// Masonry settings to organize footer widgets
jQuery(document).ready(function($){
    var $container = $('#footer-widgets').masonry();
    enquire.register("screen and (min-width:880px)", {

        // Triggered when a media query matches.
        match : function() {
            $container.masonry({
                columnWidth: 400,
                itemSelector: '.widget',
                isFitWidth: true,
                isAnimated: true
            });
        },      

        // Triggered when the media query transitions 
        // *from a matched state to an unmatched state*.
        unmatch : function() {
            $container.masonry('destroy');
        }   
        
    }); 
});