adjusted cropbox max-height calculation to be dynamic

v1.18.x
Julian Lam 8 years ago
parent 3e218a75b8
commit 74965654de

@ -145,8 +145,7 @@
#crop-picture-modal {
#cropped-image {
max-width: 50%;
max-height: 350px;
max-width: 100%;
}
.cropper-container.cropper-bg {

@ -41,7 +41,11 @@ define('pictureCropper', ['translator', 'cropper'], function (translator, croppe
backdrop: 'static',
}).modal('show');
// Set cropper image max-height based on viewport
var cropBoxHeight = parseInt($(window).height() / 2, 10);
var img = document.getElementById('cropped-image');
$(img).css('max-height', cropBoxHeight);
var cropperTool = new cropper.default(img, {
aspectRatio: data.aspectRatio,
autoCropArea: 1,

Loading…
Cancel
Save