Open GoogleCodeExporter opened 9 years ago
I would like to know if there are any thoughts on this. I have had to revert
back to 1.82 because of this error in IE. The "Stop running this script?" error
does not exist in 1.82.
Original comment by hexxamil...@gmail.com
on 16 Apr 2012 at 6:28
IE8 is an old browser that gives me some white hair.
It's difficult to manage those kind of old browser.
I'll try to correct that but please try to use a more newer browser, at least
IE9 which has a better compliance with javascript stuff.
Original comment by nils.cpa...@gmail.com
on 17 Apr 2012 at 7:59
Trust me. I wish IE did not exist but unfortunately IE8 is still a standard for
my user base so I have to cater to that. I don't have this issue with Firefox
of course and this issue only seems to occur in IE when there is a long list of
items. Could it be the method of how the items are being queried?
Original comment by hexxamil...@gmail.com
on 18 Apr 2012 at 6:12
I fixed this by modifying the items.load.php class. Apparently using AJAX in IE
timesout trying to load all of the items at once. So I have edited it to load 7
at a time and there is no longer an error. Again, this is no problem in Firefox
only IE.
Why 7? Well loading more than 7 items causes the error pop up again asking
"Stop running this script? A script on this page is causing Internet Explorer
to run slowly. If it continues to run, your computer might become unresponsive."
I modified the items.load.php class as follows.
From this:
/adapt to the screen height
$("#nb_items_to_display_once").val(Math.round((window_height-450)/23));
To this:
/adapt to the screen height
//$("#nb_items_to_display_once").val(Math.round((window_height-450)/23));
$("#nb_items_to_display_once").val('7');
Original comment by hexxamil...@gmail.com
on 24 Apr 2012 at 10:55
You can directly go in the Settings page and decide to only show 7 items.
There is a specific option for that ;-)
Nevertheless there is something with the window height calculation that IE8.
Original comment by nils.cpa...@gmail.com
on 28 Apr 2012 at 6:18
Original issue reported on code.google.com by
hexxamil...@gmail.com
on 11 Apr 2012 at 9:07