try io instead of app to maybe workaround CORs problem

This commit is contained in:
Brahn Partridge 2019-06-24 18:22:17 +10:00 committed by Neil Lalonde
parent 3054f2539a
commit 89200f3b99
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ function loadCodeFund() {
return _promise;
}
const url = "https://codefund.app/properties/" + propertyId + "/funder.json";
const url = "https://codefund.io/properties/" + propertyId + "/funder.json";
_promise = new Promise(function(resolve, reject) {
let xhr = new XMLHttpRequest();