From e35fa76bc4af3f689d496e392aaa51c107379dad Mon Sep 17 00:00:00 2001 From: Linus Miller Date: Fri, 7 Aug 2015 23:10:20 +0200 Subject: [PATCH] Remove console.logs. --- src/js/app.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/js/app.js b/src/js/app.js index 04868d6..d79ac15 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -76,7 +76,6 @@ $(function() { var path = window.location.protocol + '//' + window.location.host + '/api/fingerprints/' + id; - console.log(path); $.ajax({ method: 'POST', dataType: 'json', @@ -88,10 +87,7 @@ $(function() { var $pre = $('
');
 			$pre.text(JSON.stringify(res.headers, null, 2));
 			$div.append($pre);
-			console.log('success');
 		},
-		error: function() {
-			console.log('error');
-		}
+		error: function() {}
 	});
 });