We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cb4999 commit ca03617Copy full SHA for ca03617
corehq/apps/cloudcare/static/cloudcare/js/formplayer/app.js
@@ -23,7 +23,12 @@ hqDefine("cloudcare/js/formplayer/app", function () {
23
FormplayerFrontend.on("before:start", function (app, options) {
24
// Make a get call if the csrf token isn't available when the page loads.
25
if ($.cookie('XSRF-TOKEN') === undefined) {
26
- $.get({url: options.formplayer_url + '/serverup', global: false, xhrFields: { withCredentials: true }});
+ $.get({
27
+ url: options.formplayer_url + '/serverup',
28
+ global: false,
29
+ async: false,
30
+ xhrFields: { withCredentials: true },
31
+ });
32
}
33
var RegionContainer = Marionette.View.extend({
34
el: "#menu-container",
0 commit comments