README.md in bootstrap-editable-rails-0.0.4 vs README.md in bootstrap-editable-rails-0.0.5

- old
+ new

@@ -87,9 +87,26 @@ end end end ``` +#### Known issue + +The scaffold above will not work with jQuery 1.9.0 (included in jquery-rails 2.2.0) because of jQuery's bug. + +https://github.com/jquery/jquery/pull/1142 + +To avoid it, you can do one of the following (and so on). + +1. Respond with some value, not empty + + `format.json { render json: @post } # 200 OK` + +2. Not use jQuery 1.9.0 + + `gem 'jquery-rails', '2.1.4'` in Gemfile + + ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`)