Remove console.logs.
This commit is contained in:
parent
d39e53365e
commit
e35fa76bc4
@ -76,7 +76,6 @@ $(function() {
|
|||||||
|
|
||||||
var path = window.location.protocol + '//' + window.location.host + '/api/fingerprints/' + id;
|
var path = window.location.protocol + '//' + window.location.host + '/api/fingerprints/' + id;
|
||||||
|
|
||||||
console.log(path);
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
@ -88,10 +87,7 @@ $(function() {
|
|||||||
var $pre = $('<pre id="' + key + '">');
|
var $pre = $('<pre id="' + key + '">');
|
||||||
$pre.text(JSON.stringify(res.headers, null, 2));
|
$pre.text(JSON.stringify(res.headers, null, 2));
|
||||||
$div.append($pre);
|
$div.append($pre);
|
||||||
console.log('success');
|
|
||||||
},
|
},
|
||||||
error: function() {
|
error: function() {}
|
||||||
console.log('error');
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user