resizable.js 382 B

123456789101112131415161718192021
  1. $(function () {
  2. 'use strict';
  3. var $image = $(window.createCropperImage());
  4. $image.cropper({
  5. resizable: false,
  6. built: function () {
  7. var cropper = $image.data('cropper');
  8. QUnit.test('options.resizable', function (assert) {
  9. assert.ok(cropper.$cropper.find('.cropper-line, .cropper-point').hasClass('cropper-hidden'));
  10. });
  11. }
  12. });
  13. });