Skip to content

Commit d439b88

Browse files
committedJun 24, 2014
Add docs about HTTP/$.ajax options
[skip ci]
1 parent 7bd87ae commit d439b88

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,14 @@ request.errback { |response|
231231
puts "failed with status #{response.status_code}"
232232
}
233233
```
234-
### HTTP
235234

236-
The `HTTP` class wraps jQuery's ajax request into a ruby class.
235+
#### Other options
236+
237+
`HTTP` accepts the usual `$.ajax` options:
237238

238239
```ruby
239-
HTTP.get("/users/1.json") do |response|
240-
puts "Got response!"
240+
HTTP.get '/search', data: {q: 'foo'}, async: false do |response|
241+
p response.body
241242
end
242243
```
243244

0 commit comments

Comments
 (0)
Please sign in to comment.