The noty error for server errors now shows more detailed info.

This commit is contained in:
Scott Erickson 2015-01-07 16:02:52 -08:00
parent 2a4f997b1d
commit c235b1cc15

View file

@ -153,7 +153,7 @@ class CocoModel extends Backbone.Model
console.warn errorMessage, res.responseJSON
unless webkit?.messageHandlers # Don't show these notys on iPad
try
noty text: "#{errorMessage}: #{res.status} #{res.statusText}", layout: 'topCenter', type: 'error', killer: false, timeout: 10000
noty text: "#{errorMessage}: #{res.status} #{res.statusText}\n#{res.responseText}", layout: 'topCenter', type: 'error', killer: false, timeout: 10000
catch notyError
console.warn "Couldn't even show noty error for", error, "because", notyError
options.success = options.error = null # So the callbacks can be garbage-collected.