diff options
author | zotlabs <mike@macgirvin.com> | 2018-01-23 16:42:24 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-01-23 16:42:24 -0800 |
commit | 5902528bae21b560b6be4879e5e87ed36ce099b6 (patch) | |
tree | 5588a1bd3d7cbf1f0444cce96931b3a28640101c /library/cropperjs/test/methods/setDragMode.js | |
parent | 1e8dcaffc977be9757b14ad23a4cc9f98c70ae60 (diff) | |
download | volse-hubzilla-5902528bae21b560b6be4879e5e87ed36ce099b6.tar.gz volse-hubzilla-5902528bae21b560b6be4879e5e87ed36ce099b6.tar.bz2 volse-hubzilla-5902528bae21b560b6be4879e5e87ed36ce099b6.zip |
undo and redo adding new cropper library as it had a .git config from the original project
Diffstat (limited to 'library/cropperjs/test/methods/setDragMode.js')
-rw-r--r-- | library/cropperjs/test/methods/setDragMode.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/library/cropperjs/test/methods/setDragMode.js b/library/cropperjs/test/methods/setDragMode.js new file mode 100644 index 000000000..1b611af9b --- /dev/null +++ b/library/cropperjs/test/methods/setDragMode.js @@ -0,0 +1,27 @@ +QUnit.test('methods#setDragMode', function (assert) { + var done = assert.async(); + var util = window.Util; + var image = util.createImage(); + + assert.expect(4); + + return new Cropper(image, { + ready: function () { + var cropper = this.cropper; + var dragBox = cropper.dragBox; + + assert.strictEqual(dragBox.dataset.action, 'crop'); + + cropper.setDragMode('move'); + assert.strictEqual(dragBox.dataset.action, 'move'); + + cropper.setDragMode('crop'); + assert.strictEqual(dragBox.dataset.action, 'crop'); + + cropper.setDragMode('none'); + assert.strictEqual(dragBox.dataset.action, 'none'); + + done(); + } + }); +}); |