Skip to main content

Bug Tracker

Side navigation

#14821 closed bug (duplicate)

Opened February 19, 2014 07:28PM UTC

Closed February 19, 2014 08:55PM UTC

$.extend - circular references - error: "Maximum call stack size exceeded"

Reported by: vic Owned by:
Priority: undecided Milestone: None
Component: unfiled Version: 2.1.0
Keywords: Cc:
Blocked by: Blocking:
Description

Circular references causes error: "Maximum call stack size exceeded"

var b = {

prop_b: "bbbb"

};

var a = {

prop_a: "aaaa",

b: b

};

b.ba = {

a: a

};

$.extend(true, a, b);ERROR "Maximum call stack size exceeded"

http:jsfiddle.net/DWbqP/

Attachments (0)
Change History (1)

Changed February 19, 2014 08:55PM UTC by dmethvin comment:1

resolution: → duplicate
status: newclosed

Duplicate of #12227.