wanghaiqing823 / jcrop

Automatically exported from code.google.com/p/jcrop
0 stars 0 forks source link

Not working in IE8 #30

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. run application in IE8
2. the selection square is fixed, it cannot be moved or resized

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by laurag...@yahoo.com on 18 Jan 2010 at 12:35

GoogleCodeExporter commented 8 years ago
I have the same problem

Original comment by joris.hens@gmail.com on 11 May 2010 at 7:58

GoogleCodeExporter commented 8 years ago
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

Adding this metatag to the header fixed this problem.

Original comment by meer...@gmail.com on 5 Jul 2010 at 12:37

GoogleCodeExporter commented 8 years ago
is that a long term fix or just a temporary workaround?

Original comment by joris.hens@gmail.com on 5 Jul 2010 at 12:52

GoogleCodeExporter commented 8 years ago
hi meersie, adding that to the head tag did not fix the problem.

Original comment by joris.hens@gmail.com on 5 Jul 2010 at 1:31

GoogleCodeExporter commented 8 years ago
i have the same problem and i tried the metatag, but haven't got a positive 
result. Can any one help

Original comment by elkamel....@gmail.com on 6 Jul 2010 at 3:23

GoogleCodeExporter commented 8 years ago
to workaround this problem, just call setCapture on mousedown and 
releaseCapture on mouseup for IE8. That works for me. 

Original comment by eric.blu...@gmail.com on 21 Nov 2010 at 11:11

GoogleCodeExporter commented 8 years ago
try putting following code in your script beginning~

    $('body').bind('selectstart', function(event) {
        if ($(event.target).hasClass('jcrop-tracker')) {
            return false;
        }
    });

Original comment by line...@gmail.com on 23 Nov 2010 at 5:29

GoogleCodeExporter commented 8 years ago
solved the problem by adding 'var' declarations in jquery.Jcrop.js l.529 & l.543

Original comment by fchdiy...@gmail.com on 20 Sep 2011 at 7:31

GoogleCodeExporter commented 8 years ago
hi, where do you add the 'var' declarations in jquery.Jcrop.js? Can you please 
provide with some of the scripts. I have the same problem. Thanks!

Original comment by hninlek...@gmail.com on 25 Jul 2013 at 9:43