I'm using Jcrop to select a 1:1 ratio non-resible area. The idea is to move the area but not to resize it. To do this I use the following code:
$('<img class="currentimage" src="'myimage.jpg'" width="400"
height="480" />').Jcrop({
setSelect: [ 0, 0, 400, 400 ],
aspectRatio: 1,
minSize: [400,400],
maxSize: [400,400]
});
However with this code it is still resizable. Am I doing something
wrong???

