/home/mip/public_html/template/AdminLTE/plugins/cropper-master/test/options/cropBoxResizable.js
$(function () {

  'use strict';

  var $image = $(window.createCropperImage());

  $image.cropper({
    cropBoxResizable: false,

    ready: function () {
      var cropper = $image.data('cropper');

      QUnit.test('options#cropBoxResizable', function (assert) {
        assert.ok(cropper.$cropper.find('.cropper-line, .cropper-point').hasClass('cropper-hidden'));
      });

    }
  });

});