E:
/
home
/
kbcomunicacao1
/
Web
/
teste
/
adm
/
img-perfil
/
test
/
options
/
Upload File
HOME
$(function () { 'use strict'; var $image = $(window.createCropperImage()); var minCanvasWidth = 160; $image.cropper({ minCanvasWidth: minCanvasWidth, built: function () { QUnit.test('options.minCanvasWidth', function (assert) { var data = $image.cropper('setCanvasData', { width: 80 }).cropper('getCanvasData'); assert.ok(Math.round(data.width) === minCanvasWidth); }); } }); });