Update jsonCap.js

This commit is contained in:
vkservicesllc
2018-11-07 14:23:45 -05:00
committed by GitHub
parent 2fc4ec55d0
commit 0f3d518708

View File

@@ -1,6 +1,6 @@
function captureJSON() {
var xhr = new XMLHttpRequest();
xhr.onload = funtion() {
xhr.onload = function() {
if (xhr.status >= 200 && xhr.status < 400) {
var div = document.getElementById('capturedJSON'),
content = '',