minCropBoxHeight.js 423 B

123456789101112131415161718192021222324
  1. $(function () {
  2. 'use strict';
  3. var $image = $(window.createCropperImage());
  4. $image.cropper({
  5. minCropBoxHeight: 150,
  6. built: function () {
  7. QUnit.test('options.minCropBoxHeight', function (assert) {
  8. var data = $image.cropper('setCropBoxData', {
  9. height: 100
  10. }).cropper('getCropBoxData');
  11. assert.ok(Math.round(data.height) === 150);
  12. });
  13. }
  14. });
  15. });