Sha256: 05bc42f6ff80fb22bc0bb62d4b211939815a26860e20293b13c441f257ae3836
Contents?: true
Size: 634 Bytes
Versions: 3
Compression:
Stored size: 634 Bytes
Contents
<script type="text/javascript"> $(document).ready(function() { jQuery(function($) { function setCoords(c) { // variables can be accessed here as // c.x, c.y, c.x2, c.y2, c.w, c.h $('#upload_crop_x').attr('value',c.x); $('#upload_crop_y').attr('value',c.y); $('#upload_crop_w').attr('value',c.w); $('#upload_crop_h').attr('value',c.h); }; $('#image_crop').Jcrop({ onSelect: setCoords, onChange: setCoords, bgColor: 'black', bgOpacity: .4 //aspectRatio: 16 / 9 }); }); }); </script>
Version data entries
3 entries across 3 versions & 1 rubygems