Файл: CloudBox-main/CloudBox/admin_assets/js/pages/imageCrop.js
Строк: 15
<?php
jQuery(document).ready(function(a){imageCrop()});function imageCrop(){var c=$(".cropper"),b=$("#dataX"),a=$("#dataY"),f=$("#dataH"),d=$("#dataW"),e;c.cropper({aspectRatio:16/9,data:{x:300,y:250,width:640,height:360},preview:".preview",dragCrop:true,modal:false,resizeable:true,done:function(g){b.val(g.x);a.val(g.y);f.val(g.height);d.val(g.width)}});e=c.data("cropper");$("#reset").click(function(){c.cropper("reset")});$("#release").click(function(){c.cropper("release")});$("#setImgSrc").click(function(){c.cropper("setImgSrc",$("#imgSrc").val())})};
?>