Workaround for missing document.location inside child window in Windows Chrome.

This commit is contained in:
Nick Winter 2014-09-08 14:31:52 -07:00
parent 8dad2bf12d
commit c64c391d74

View file

@ -110,7 +110,7 @@ class CocoModel extends Backbone.Model
save: (attrs, options) ->
options ?= {}
options.headers ?= {}
options.headers['X-Current-Path'] = document.location.pathname
options.headers['X-Current-Path'] = document.location?.pathname ? 'unknown'
success = options.success
error = options.error
options.success = (model, res) =>