rotatable.js 366 B

1234567891011121314151617181920212223
  1. $(function () {
  2. 'use strict';
  3. var $image = $(window.createCropperImage());
  4. $image.cropper({
  5. rotatable: false,
  6. built: function () {
  7. var cropper = $image.data('cropper');
  8. QUnit.test('options.rotatable', function (assert) {
  9. $image.cropper('rotate', 15);
  10. assert.equal(cropper.image.rotate, 0);
  11. });
  12. }
  13. });
  14. });