Skip to main content

Bug Tracker

Side navigation

#12669 closed bug (notabug)

Opened October 07, 2012 08:54AM UTC

Closed October 14, 2012 10:12PM UTC

Stack overflow at line 443 in IE8

Reported by: v.galano@daredevel.com 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.

Attachments (0)
Change History (2)

Changed October 14, 2012 10:10PM UTC by mikesherov comment:1

#12670 is a duplicate of this ticket.

Changed October 14, 2012 10:12PM UTC by mikesherov comment:2

resolution: → notabug
status: newclosed

Please report this bug to the jquery UI bug tracker here: http://bugs.jqueryui.com as it's not a bug in jQuery core.