terrymun/Fluidbox

Event names should be delimited by a space in jQuery.on

Opened this issue · 0 comments

$fb.on('recompute.fluidbox, compute.fluidbox', function() {

This should be

$fb.on('recompute.fluidbox compute.fluidbox', function() {

without a comma, as event names are delimited by a space: https://api.jquery.com/on/