Fix client on Firefox 34.0 beta

Our ajax function was passing params as object to xhr.send function.
For some reason this breaks on Firefox 34.0 beta. Sending stringified
version of params works correctly.
This commit is contained in:
Piotr Sarnacki 2014-11-13 18:04:58 +01:00
parent 95538498f0
commit 9057650646

View File

@ -27,6 +27,9 @@ Travis.ajax = Em.Object.create
!publicEndpoint || privateEndpoint
ajax: (url, method, options) ->
# TODO: we have our own ajax implementation, because jQuery didn't
# properly worked with headers on firefox, it would be nice to check
# if this is still a problem and if we can remove this
method = method || "GET"
method = method.toUpperCase()
@ -135,6 +138,10 @@ Travis.ajax = Em.Object.create
reject(xhr)
options.error.call(data, xhr.status, xhr)
xhr.send(options.data)
data = options.data
if typeof(options.data) == "object" && (Ember.isNone(options.contentType) || options.contentType.match /application\/json/)
data = JSON.stringify(data)
xhr.send(data)
return promise