First off, thank you for a fantastic light-weight masonry plugin! I'm wondering how I might add a macy-init class to the container element when Macy has initialized? I've tried the following using an event key, but it doesn't seem to be working:
let macy = Macy({container: '.container'});
macy.on(macy.constants.EVENT_INITIALIZED, function() {
var container = document.querySelector('.container');
container.classList.add('macy-init');
});
Thanks for any insight here.