add mutant standard schema file

This commit is contained in:
erinn 2020-05-19 16:57:11 -07:00
parent e990b86b6d
commit d4e9435f75
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ var standard = (function () {
var manifest = []
var xhr = new XMLHttpRequest;
xhr.open("GET", "../images/mtnt_data.json", false);
xhr.open("GET", "MutantStandard.json", false);
xhr.onreadystatechange = function() {
if (xhr.readyState == XMLHttpRequest.DONE) {
manifest = JSON.parse(xhr.responseText);