From 7e315677db1cecdd0fe5547e6ddde8b6586b9c1d Mon Sep 17 00:00:00 2001 From: root Date: Fri, 8 Mar 2024 12:57:07 +0000 Subject: [PATCH] Cleanup unused class --- assets/js/sections/contesting.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/assets/js/sections/contesting.js b/assets/js/sections/contesting.js index 693a03e9..1ce2b5eb 100644 --- a/assets/js/sections/contesting.js +++ b/assets/js/sections/contesting.js @@ -248,13 +248,11 @@ function checkIfWorkedBefore() { success: function (result) { if (result.message.substr(0, 6) == 'Worked') { $('#callsign_info').removeClass('text-bg-success'); - $('#callsign_info').removeClass('text-bg-info'); $('#callsign_info').addClass('text-bg-danger'); $('#callsign_info').text(result.message); } else if (result.message == "OKAY") { $('#callsign_info').removeClass('text-bg-danger'); - $('#callsign_info').removeClass('text-bg-info'); $('#callsign_info').addClass('text-bg-success'); $('#callsign_info').text("Go Work Them!"); } else {