Error in IE 7 and 8

I have a rails application in which I use scriptaculous, prototip, controlMModal (livepipe.net). I get an error in IE 7 and 8 as a webpage error (warning window) Error

"Stack overflow on line 1715"

Used versions: scriptaculous v 1.8.3 prototype 2.2.0.2 prototype 1.6.1 controlmodal 2.2.3 (livepipe.net)

+4
source share
2 answers

I think this is a prototype error. you need to change some lines of code in the prototype.js file as explained here

+1
source

In the topic, IE has a lower call stack threshold than other browsers. For example, in Firefox you can call 3000 functions before.

Make sure your code works too much and if you can break up the mini-tasks.

0
source

Source: https://habr.com/ru/post/1309180/


All Articles