Properly call error callback in ajax utility

This commit is contained in:
Piotr Sarnacki 2015-12-07 13:35:25 +01:00
parent 69ac8e1a00
commit 63ddf332a8

View File

@ -143,7 +143,7 @@ ajax = Em.Object.create
options.success.call(options.context, data, xhr.status, xhr)
else
reject(xhr)
options.error.call(data, xhr.status, xhr)
options.error.call(options.context, data, xhr.status, xhr)
data = options.data
if typeof(options.data) == "object" && (Ember.isNone(options.contentType) || options.contentType.match /application\/json/)