Last active
August 29, 2015 14:27
-
-
Save dtipson/26ef57aa0dd20d4327d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //using the .then( successCB, failCB ) pattern | |
| $.ajax('some-url') | |
| .then( filter_and_format_results, filter_and_format_errors ) | |
| .done( display_results ) | |
| .fail( display_error_message ); | |
| //or, using the new .catch( failCB ) pattern | |
| $.ajax('some-url') | |
| .then( filter_and_format_results, ) | |
| .catch( filter_and_format_errors ) | |
| .done( display_results ) | |
| .fail( display_error_message ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment