| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- $(function () {
- 'use strict';
- var $image = $(window.createCropperImage());
- $image.cropper({
- built: function () {
- var canvasData,
- cropBoxData;
- QUnit.test('options.strict: true', function (assert) {
- $image.cropper('zoom', -0.5); // Zoom out
- canvasData = $image.cropper('getCanvasData');
- cropBoxData = $image.cropper('getCropBoxData');
- assert.equal(Math.round(canvasData.width), Math.round(cropBoxData.width));
- assert.equal(Math.round(canvasData.height), Math.round(cropBoxData.height));
- assert.equal(Math.round(canvasData.left), Math.round(cropBoxData.left));
- assert.equal(Math.round(canvasData.top), Math.round(cropBoxData.top));
- });
- }
- });
- (function () {
- var $image = $(window.createCropperImage());
- $image.cropper({
- strict: false,
- built: function () {
- var canvasData = {
- left: 100,
- top: 100,
- width: 160,
- height: 90
- };
- QUnit.test('options.strict: false', function (assert) {
- $image.cropper('setCanvasData', canvasData);
- assert.deepEqual($image.cropper('getCanvasData'), canvasData);
- });
- }
- });
- })();
- });
|