From 44333fc07be7c0614365789519ccace8c7d2e40a Mon Sep 17 00:00:00 2001 From: Robert Levy Date: Thu, 2 Jan 2014 11:22:59 -0500 Subject: [PATCH] Refer to deferred.state instead of deprecated APIs deferred.isResolved and .isRejected were deprecated then removed in favor of .state --- pages/Types.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Types.html b/pages/Types.html index 8c3dee9f..3ab239c0 100644 --- a/pages/Types.html +++ b/pages/Types.html @@ -613,7 +613,7 @@

Deferred Object

As of jQuery 1.5, the Deferred object provides a way to register multiple callbacks into self-managed callback queues, invoke callback queues as appropriate, and relay the success or failure state of any synchronous or asynchronous function.

Promise Object

-

This object provides a subset of the methods of the Deferred object (then, done, fail, always, pipe. isResolved, and isRejected) to prevent users from changing the state of the Deferred. +

This object provides a subset of the methods of the Deferred object (then, done, fail, always, pipe, and state) to prevent users from changing the state of the Deferred.

Callbacks Object

A multi-purpose object that provides a powerful way to manage callback lists. It supports adding, removing, firing, and disabling callbacks. The Callbacks object is created and returned by the $.Callbacks function and subsequently returned by most of that function's methods.