From 1ea5239138793a9bb1a3dfd47a693f3993f3ab39 Mon Sep 17 00:00:00 2001 From: Aman Sachan Date: Fri, 8 May 2026 02:54:32 +0000 Subject: [PATCH] fix: remove debug console.log from popup.js --- addon/js/popup.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/addon/js/popup.js b/addon/js/popup.js index be7af4b..ca874c6 100644 --- a/addon/js/popup.js +++ b/addon/js/popup.js @@ -17,8 +17,7 @@ function ajax(conf) { var xhr = new XMLHttpRequest(); xhr.open("GET", conf.url, true); xhr.onreadystatechange = function() { - console.log('xhr',xhr); - if (xhr && xhr.readyState == 4 && xhr.status == 200) { + if (xhr && xhr.readyState == 4 && xhr.status == 200) { var data=JSON.parse(xhr.response); conf.success(data); }