zoomable.js 405 B

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