Letractively / tooltips

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

Too much recursion #20

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I am using tooltips.js with Prototype 1.6.0 and Scriptaculous 1.7.0.
Everything works fine until you mouse over a tootipped element to see the
tooltip. When the event is triggered, Firebug's error count starts counting
up the errors.

Firebug reports a "too much recursion" error, apparently originating from
prototype.js line 247, which is in the methodize section (247 is marked
with >>>):

  methodize: function() {
    if (this._methodized) return this._methodized;
    var __method = this;
    return this._methodized = function() {
>>>    return __method.apply(null, [this].concat($A(arguments)));
    };
  }

Are Prototype 1.6.0 and Scriptaculous 1.7.0 not compatible or is there
something else wrong?

Original issue reported on code.google.com by eightsev...@gmail.com on 18 Apr 2008 at 2:36

GoogleCodeExporter commented 8 years ago
Use the current version of these libraries (Prototype 1.6.0.1 and Scriptaculous 
1.8.1) instead. I had the same problem using the current version of Prototype 
in 
conjunction with the Scriptaculous version bundled with CoolTips.

Original comment by m...@benjamin-rack.de on 23 Apr 2008 at 7:19