blob: d5d3e1d7dd288d2a87969af403ea997fbbd23515 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
QUnit.test('options#cropBoxMovable: true', function (assert) {
var done = assert.async();
var util = window.Util;
var image = util.createImage();
assert.expect(1);
return new Cropper(image, {
// cropBoxMovable: true,
ready: function () {
var cropper = this.cropper;
var face = util.getByClass(cropper.cropBox, 'cropper-face');
assert.strictEqual(face[0].dataset.action, 'all');
done();
}
});
});
QUnit.test('options#cropBoxMovable: false', function (assert) {
var done = assert.async();
var util = window.Util;
var image = util.createImage();
assert.expect(1);
return new Cropper(image, {
cropBoxMovable: false,
ready: function () {
var cropper = this.cropper;
var face = util.getByClass(cropper.cropBox, 'cropper-face');
assert.strictEqual(face[0].dataset.action, cropper.options.dragMode);
done();
}
});
});
|