|
/* 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
|
|
})
|
|
})
|