Open GoogleCodeExporter opened 8 years ago
i have a suggestion for you.
I had the same problem but what i did , set direction:ltr for the particular
divs
conatining images, jcrop-holder ,etc and this solved my problem.
Original comment by panky...@gmail.com
on 24 Sep 2009 at 11:41
The problem persisted in all browsers.
The solution is not to change anything in the CSS file. All you need is simply
to change the direction of the table that holds the crop boxes like this:
direction: ltr; text-align: right;
And then simply exchange the locations of the TDs that hold the boxes - make
them appear in reverse order in the HTML code.
Then, you will get a cropping feature where the source image appears on the
left, and the example image on the right.
Original comment by Yousef....@gmail.com
on 30 Nov 2010 at 11:19
i can't work with JCrop in rtl direction
please help me
Original comment by alim1...@gmail.com
on 25 Feb 2011 at 8:31
You have to modify jquery.jcrop.js file.
Actually :
function updateShade(c)
{
shades.top.css({
left: px(c.x),
width: px(c.w),
height: px(c.y)
});
shades.bottom.css({
top: px(c.y2),
left: px(c.x),
width: px(c.w),
height: px(boundy-c.y2)
});
shades.right.css({
left: px(c.x2),
width: px(boundx-c.x2)
});
shades.left.css({
width: px(c.x),
left : px(0) //ADD THIS!!!!
});
}
Original comment by vadim.me...@gmail.com
on 16 Jan 2015 at 7:00
Original issue reported on code.google.com by
yha...@gmail.com
on 6 Apr 2009 at 9:26