Opened 10 years ago
Closed 10 years ago
#12670 closed bug (duplicate)
Stack overflow at line 443 in IE8
Reported by: | daredevel | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.8.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I have the following situation:
$.widget("daredevel.tree", { _create:function () { this.element.treecheckbox(this.options); this.element.treecollapse(this.options); this.element.treednd(this.options); } }); $.widget("daredevel.treecheckbox", { _create:function () { /*...*/ } }); $.widget("daredevel.treecollapse", { _create:function () { /*...*/ } }); $.widget("daredevel.treednd", { _create:function () { /*...*/ } });
The core components load other components. In Firefox, Opera and Chrome, everything is ok, but in IE8 the 2nd call fires error "Stack overflow al line 443". Order of calls doesn't matters. It simply crash on the 2nd call.
Note: See
TracTickets for help on using
tickets.
Duplicate of #12669.