Sha256: bbaa5b04d63b49fd88a03983c109f9996543c8d5c2963823330afe2e0aadf72c

Contents?: true

Size: 506 Bytes

Versions: 38

Compression:

Stored size: 506 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 = require('spotlight/crop');
    $(croppables).each(function() {
      var cropElement = $(this);
      var c = new Crop(cropElement);

      c.render();
    });

    return this;
  };
})(jQuery);

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
blacklight-spotlight-2.7.2 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.7.1 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.7.0 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.6.1.1 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.6.1 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.6.0 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.5.2 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.5.1 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.5.0 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.4.1 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.4.0 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.3.3 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.3.2 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.3.1 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.3.0 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.2.1 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.2.0 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.1.0 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.0.2 app/assets/javascripts/spotlight/croppable.js
blacklight-spotlight-2.0.1 app/assets/javascripts/spotlight/croppable.js