We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
All 200 response (including render :nothing) are rendered as errors.
render :nothing
Here's a vanilla app that shows this behavior: https://github.com/gavinhughes/editable.
The text was updated successfully, but these errors were encountered:
Thank you. It seems not to work with jQuery 1.9. I have no idea where is wrong, please try this anyway in Gemfile:
Gemfile
gem 'jquery-rails', '2.1.4'
Basically, this gem and X-editable are for update. X-editable has supported creating new record (with a bit problem). http://vitalets.github.com/x-editable/docs.html#newrecord but this gem has not yet.
Sorry, something went wrong.
Tested the vanilla app on '2.1.4' and found no issues. It's only on '2.2.0'.
head and render :nothing (include 204) will not work with jQuery 1.9.0.
head
To avoid it, you can respond with some value, not empty
format.json { render json: @post } # 200 OK
No branches or pull requests
All 200 response (including
render :nothing
) are rendered as errors.Here's a vanilla app that shows this behavior: https://github.com/gavinhughes/editable.
The text was updated successfully, but these errors were encountered: