forked from saurabh/orbit4-5
a small link click bug fixed
This commit is contained in:
parent
56e18cd040
commit
a52239b135
|
@ -103,10 +103,14 @@ $(document).ready(function() {
|
||||||
$("#select_all_modal").on("click",function(){
|
$("#select_all_modal").on("click",function(){
|
||||||
$(current_role).find(".check-item").addClass("active");
|
$(current_role).find(".check-item").addClass("active");
|
||||||
$(current_role).find(".check-item input[type=checkbox]").prop("checked","checked");
|
$(current_role).find(".check-item input[type=checkbox]").prop("checked","checked");
|
||||||
|
$(".dropup").removeClass("open");
|
||||||
|
return false;
|
||||||
})
|
})
|
||||||
$("#deselect_all_modal").on("click",function(){
|
$("#deselect_all_modal").on("click",function(){
|
||||||
$(current_role).find(".check-item").removeClass("active");
|
$(current_role).find(".check-item").removeClass("active");
|
||||||
$(current_role).find(".check-item input[type=checkbox]").removeAttr("checked");
|
$(current_role).find(".check-item input[type=checkbox]").removeAttr("checked");
|
||||||
|
$(".dropup").removeClass("open");
|
||||||
|
return false;
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue