0byt3m1n1
Path:
/
home
/
kassiope
/
www
/
administrer
/
js
/
[
Home
]
File: wagaia_jcrop.js
jQuery(function($) { var wi_w = $('#wi').val(); var wi_h = $('#he').val(); var temp_w = $('input[name=resized_temp_w]').val(); var temp_h = $('input[name=resized_temp_h]').val(); var api; var ratio = parseFloat(wi_w/wi_h).toFixed(3); $('#crop_image').Jcrop({ onChange: showCoords, onSelect: showCoords, aspectRatio: ratio, minSize:[wi_w,wi_h] },function(){ api = this; api.setSelect([130,65,130+350,65+285]); api.setOptions({ bgFade: true, allowResize: true, trueSize: [temp_w, temp_h] }); api.ui.selection.addClass('jcrop-selection'); }); });