Closed dom-turnbull closed 9 years ago
Under http://flickity.metafizzy.co/api.html#events-demo, the following code is listed:
// jQuery $gallery.on( 'select', function() { console.log( 'Flickity settled at ' + flkty.selectedIndex ) }) // vanilla JS flkty.on( 'select', function() {...})
Which is actually the 'select' event so when it is used, it fires too early and breaks code.
'select'
Resolved: Sorted it by just changing 'select' to 'settle'.
'settle'
Thanks for catching this! If you like stickers, email me yo@metafizzy so I can send some your way.
Under http://flickity.metafizzy.co/api.html#events-demo, the following code is listed:
Which is actually the
'select'
event so when it is used, it fires too early and breaks code.Resolved: Sorted it by just changing
'select'
to'settle'
.