From 69c80ec4120acd1b43f8f76b08d7f4df54b0ec18 Mon Sep 17 00:00:00 2001 From: Kevin Dao Date: Tue, 13 Aug 2019 18:52:47 -0500 Subject: [PATCH] Remove logging statement --- js/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/popup.js b/js/popup.js index 847df4e0..0445fc7c 100644 --- a/js/popup.js +++ b/js/popup.js @@ -81,7 +81,7 @@ function formatShortenedCourseName(course) { $(document).click(function(event) { $target = $(event.target); - console.log($target); + // If we're not clicking on search button or search popup, and popup is visible, hide it if (!$target.closest('#search').length && !$target.closest('#search-popup').length && $('#search-popup').is(":visible")) { hideSearchPopup();