Skip to main content

Bug Tracker

Side navigation

#10162 closed bug (duplicate)

Opened August 29, 2011 07:35PM UTC

Closed August 29, 2011 07:41PM UTC

Last modified August 29, 2011 07:41PM UTC

this function throws undefined exception

Reported by: anonymous Owned by:
Priority: undecided Milestone: None
Component: unfiled Version: 1.6.3rc1
Keywords: Cc:
Blocked by: Blocking:
Description

resolveWith: function( context, args ) {

if ( !cancelled && !fired && !firing ) {

// make sure args are available (#8421)

args = args || [];

firing = 1;

try {

while( callbacks[ 0 ] ) {

callbacks.shift().apply( context, args );

}

}

finally {

fired = [ context, args ];

firing = 0;

}

}

return this;

},

Attachments (0)
Change History (3)

Changed August 29, 2011 07:38PM UTC by anonymous comment:1

It throws the exceptioin in IE 8 running under IE 7 compatibility mode.

Changed August 29, 2011 07:41PM UTC by rwaldron comment:2

resolution: → duplicate
status: newclosed

Changed August 29, 2011 07:41PM UTC by rwaldron comment:3

Duplicate of #9033.