CC-Archived / promise-as3

Promises/A+ compliant implementation in ActionScript 3.0
168 stars 55 forks source link

Support Promise/A then() functionality w/chaining #2

Closed johnyanarella closed 11 years ago

johnyanarella commented 12 years ago

Add support for Promise/A then() functionality, as in our current pipe() method.

darscan commented 12 years ago

Close the issue?

johnyanarella commented 12 years ago

Nope. :)

The current when() and then() functionality matches jQuery's implementation, rather than Promise/A. This has yet to be resolved. We may yet still maintain a facade that implements the jQuery syntax and behavior.

Thomas's commit above was just a minor step in that direction.

darscan commented 12 years ago

I see. Serves me right for not actually looking through the code :)

johnyanarella commented 11 years ago

Rewritten to conform to the Promises/A+ specification.

The original jQuery style implementation has moved to the Abandoned branch.