Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.
Permalink
Browse files
Conditionally disable or enable fun gradient animation depending on s…
…witch
  • Loading branch information
srevinsaju committed Jun 15, 2020
1 parent 31f2e73 commit 65a7b8f
Showing 1 changed file with 3 additions and 3 deletions.
@@ -199,10 +199,10 @@
// CPU usage
$('#funCheckBox').change(function() {
if (this.checked) {
$("body").addClass("fun-gradient-animation-bg")
enableFunGradientBackground();
} else {
$("body").removeClass("fun-gradient-animation-bg")
}
disableFunGradientBackground();
};
})

});

0 comments on commit 65a7b8f

Please sign in to comment.