Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix retry not preserving original ajax options if context is specified #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

bragma
Copy link

@bragma bragma commented Oct 9, 2015

I've found that if "context" is specified in Ajax options, they are not preserved during retries. This is because retry uses this expecting to be the original Ajax options, but context changes this to a value specified by the user.
As an example $.ajax({url:"/test",data:{},type:"POST",context:"somecontextofmine"}) will fail if retried, because it will issue a "GET" instead of a "POST" as specified in the options.

This PR captures the original options and uses them without using this and fixes the issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant