-
Commander-lol authored
Added an extra file (test.js) to store various tests under muTest, a php file to respond to requests and an update for test.html to include test.js
cd0981b2
test.js 288 B
if(!mu.exists(window.muTest)){
window.muTest = {
postJsonResponse: function(){
mu.ajax({
url: 'tests/jsonresponse.php',
method: 'POST',
responseType: 'json',
success: function(data){
console.log(data);
}
});
}
}
}