Sha256: 6c5933842609f9c2d0dfd36e70f0b7ed917dff269fe19d98f754157b8f2a58f0
Contents?: true
Size: 499 Bytes
Versions: 24
Compression:
Stored size: 499 Bytes
Contents
Spotlight.onLoad(function() { $('[data-behavior="iiif-cropper"]').croppable(); }); /* IIIF image cropping plugin Add iiif-crop data-attributes to file input (with data-behavior='iiif-cropper') to instantiate. */ (function($) { $.fn.croppable = function() { var croppables = this; var Crop = spotlightAdminCrop; $(croppables).each(function() { var cropElement = $(this); var c = new Crop(cropElement); c.render(); }); return this; }; })(jQuery);
Version data entries
24 entries across 24 versions & 1 rubygems