Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you used to have...

Now you would have...

Code Block
javascript
javascript
var itemFn = function () {
    return jQuery(".orderable#gallery > [id^=thumb-]");
};
fluid.createLightbox("#gallery", itemFn);
Code Block
javascript
javascript
var opts = {
    selectors: {
        movables: ".orderable#gallery > [id^=thumb-]"
    }
};
fluid.lightbox("#gallery", opts);

...