Don't allow clicks on disabled pinned apps

This commit is contained in:
Squidly271 2021-02-15 07:20:09 -05:00
parent d73c86fee9
commit ebdfb6faab
2 changed files with 3 additions and 0 deletions

View File

@ -300,6 +300,9 @@ $(function(){
});
$(".sectionMenu").on("click",function() {
if ( $(this).hasClass("caMenuDisabled") )
return;
var section = $(this).attr("data-category");
switch (section) {
case "installed_apps":