mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Workaround for missing document.location inside child window in Windows Chrome.
This commit is contained in:
parent
8dad2bf12d
commit
c64c391d74
1 changed files with 1 additions and 1 deletions
|
@ -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) =>
|
||||
|
|
Loading…
Add table
Reference in a new issue