Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Quickcorp committed Apr 29, 2018
1 parent 938cb0c commit 06a5f18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QCObjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@
};
logger.debug('LOADING COMPONENT DATA {{DATA}} FROM {{URL}}'.replace('{{DATA}}', JSON.stringify(component.data)).replace('{{URL}}', component.url));
var xhr = new XMLHttpRequest();
xhr.open(component.method, component.url);
xhr.open(component.method, component.url,true);
xhr.setRequestHeader('Content-Type', 'text/html');
xhr.onload = function() {
if (xhr.status === 200) {
Expand Down

0 comments on commit 06a5f18

Please sign in to comment.