Merge pull request #265 from rasika90/IOTS-114

Fixing IOTS-114: the user is unable to deselect a child node permissions
revert-70aa11f8
sumedharubasinghe 8 years ago
commit 61ef87c658

@ -61,20 +61,6 @@
</a>
</div>
</div>
<div id="child-deselect-error-content" class="hide">
<div class="content">
<div class="row">
<div class="col-lg-5 col-md-6 col-centered">
<h3>Can't deselect child permissions when parent permission is selected.</h3>
<div class="buttons">
<a href="#" id="child-deselect-error-link" class="btn-operations">
Ok
</a>
</div>
</div>
</div>
</div>
</div>
<!-- /content -->
</div>
</div>

@ -117,12 +117,8 @@ $(document).ready(function () {
$("#permissionList li input").click(function() {
var parentInput = $(this).parents("ul:eq(1) > li").find('input:eq(0)');
if(parentInput && parentInput.is(':checked')){
$(modalPopupContent).html($('#child-deselect-error-content').html());
showPopup();
$("a#child-deselect-error-link").click(function () {
hidePopup();
});
return false;
parentInput.prop('checked', false);
return true;
}
});
$('#permissionList').tree_view();

Loading…
Cancel
Save