Don't allow clicks on disabled pinned apps
parent
d73c86fee9
commit
ebdfb6faab
Binary file not shown.
|
@ -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":
|
||||
|
|
Loading…
Reference in New Issue