minCropBoxWidth.js 419 B

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