cheatsheets/_js/behaviors/h3-section-list.js

16 lines
287 B
JavaScript

/* eslint-disable no-new */
import Isotope from 'isotope-layout/dist/isotope.pkgd.js'
import onmount from 'onmount'
/*
* Behavior: Isotope
*/
onmount('[data-js-h3-section-list]', function () {
new Isotope(this, {
itemSelector: '.h3-section',
transitionDuration: 0
})
})