diff options
author | mrjive <mrjive@mrjive.it> | 2018-01-24 18:30:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 18:30:59 +0100 |
commit | f560a3c98fc7cf4de7d86bd7f074c9995b3d240a (patch) | |
tree | 7cf16324e513afcf0446e19a0db39ec2ece21672 /library/cropperjs/src/js/defaults.js | |
parent | 131baa9f4584b74ab76328d776c0bb5ce603da7d (diff) | |
parent | add9890754780c886188504647b3058c4cc146c1 (diff) | |
download | volse-hubzilla-f560a3c98fc7cf4de7d86bd7f074c9995b3d240a.tar.gz volse-hubzilla-f560a3c98fc7cf4de7d86bd7f074c9995b3d240a.tar.bz2 volse-hubzilla-f560a3c98fc7cf4de7d86bd7f074c9995b3d240a.zip |
Merge pull request #11 from redmatrix/dev
Dev
Diffstat (limited to 'library/cropperjs/src/js/defaults.js')
-rw-r--r-- | library/cropperjs/src/js/defaults.js | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/library/cropperjs/src/js/defaults.js b/library/cropperjs/src/js/defaults.js new file mode 100644 index 000000000..aa469e73a --- /dev/null +++ b/library/cropperjs/src/js/defaults.js @@ -0,0 +1,99 @@ +import { + DRAG_MODE_CROP, +} from './constants'; + +export default { + // Define the view mode of the cropper + viewMode: 0, // 0, 1, 2, 3 + + // Define the dragging mode of the cropper + dragMode: DRAG_MODE_CROP, // 'crop', 'move' or 'none' + + // Define the aspect ratio of the crop box + aspectRatio: NaN, + + // An object with the previous cropping result data + data: null, + + // A selector for adding extra containers to preview + preview: '', + + // Re-render the cropper when resize the window + responsive: true, + + // Restore the cropped area after resize the window + restore: true, + + // Check if the current image is a cross-origin image + checkCrossOrigin: true, + + // Check the current image's Exif Orientation information + checkOrientation: true, + + // Show the black modal + modal: true, + + // Show the dashed lines for guiding + guides: true, + + // Show the center indicator for guiding + center: true, + + // Show the white modal to highlight the crop box + highlight: true, + + // Show the grid background + background: true, + + // Enable to crop the image automatically when initialize + autoCrop: true, + + // Define the percentage of automatic cropping area when initializes + autoCropArea: 0.8, + + // Enable to move the image + movable: true, + + // Enable to rotate the image + rotatable: true, + + // Enable to scale the image + scalable: true, + + // Enable to zoom the image + zoomable: true, + + // Enable to zoom the image by dragging touch + zoomOnTouch: true, + + // Enable to zoom the image by wheeling mouse + zoomOnWheel: true, + + // Define zoom ratio when zoom the image by wheeling mouse + wheelZoomRatio: 0.1, + + // Enable to move the crop box + cropBoxMovable: true, + + // Enable to resize the crop box + cropBoxResizable: true, + + // Toggle drag mode between "crop" and "move" when click twice on the cropper + toggleDragModeOnDblclick: true, + + // Size limitation + minCanvasWidth: 0, + minCanvasHeight: 0, + minCropBoxWidth: 0, + minCropBoxHeight: 0, + minContainerWidth: 200, + minContainerHeight: 100, + + // Shortcuts of events + ready: null, + cropstart: null, + cropmove: null, + cropend: null, + crop: null, + zoom: null, +}; |