What a great library, looks great, thank you!
Looking to use combine on two collection lists. Do you know why it’s combining my two collection lists perfectly but then leaving a duplicate of the second collection list below?
<script src="https://cdn.finsweet.com/files/cmslibrary-v1.3.js"></script>
<script>
// immediately/self invoked function. This function executes right away
(function() {
// create a new Library instance and store it in a variable called "customBlogPosts"
var todaysEvents = new FsLibrary('.todays-events')
// run the combine Library component on your instance
todaysEvents.combine()
})();
</script>
Both lists have the class of ‘todays-events’. And the code is before the end body tag.
Thanks.