core-resource-app-test
Version:
App that contains assets and scripts for the core apps
13 lines (12 loc) • 342 B
JavaScript
// Read sample results data
function loadJSON (path, callback) {
var xobj = new XMLHttpRequest();
xobj.overrideMimeType('application/json');
xobj.open('GET', path, true);
xobj.onreadystatechange = function () {
if (xobj.readyState === 4 && xobj.status === 200) {
callback(xobj.responseText);
}
};
xobj.send(null);
}