successfully polling all online users

This commit is contained in:
Faye Li 2017-01-19 10:58:29 -08:00
parent 5ad1cc6f4d
commit 10f512306e

View file

@ -23,7 +23,8 @@
$.ajax({
url: METAVERSE_API_URL,
success: function(response) {
$("#dev-div").html(response);
$("#dev-div").html(JSON.stringify(response.data));
console.log(response);
}
});
}