Merge pull request #364 from DimalChandrasiri/master

Fix for the bug EMM-1719
revert-dabc3590
Kamidu Sachith Punchihewa 8 years ago committed by GitHub
commit 43117a2b75

@ -2559,6 +2559,22 @@ $(document).ready(function () {
} }
}); });
$(advanceOperations).on('hidden.bs.collapse', function () {
if($(this).find('input').prop('checked')){
$(this).find('input').prop('checked',false);
}
});
$(advanceOperations).on('shown.bs.collapse', function () {
if($(this).find('input').prop('checked') == false){
$(this).find('input').prop('checked',true);
}
});
// adding support for cloning multiple profiles per feature with cloneable class definitions // adding support for cloning multiple profiles per feature with cloneable class definitions
$(advanceOperations).on("click", ".multi-view.add.enabled", function () { $(advanceOperations).on("click", ".multi-view.add.enabled", function () {
// get a copy of .cloneable and create new .cloned div element // get a copy of .cloneable and create new .cloned div element

Loading…
Cancel
Save