Bug risolti: bottone reset e cambio operatore logico
This commit is contained in:
parent
77667aec37
commit
9c138ccdb6
|
@ -103,8 +103,10 @@ $(document).ready(function() {
|
|||
};
|
||||
})
|
||||
|
||||
$('#collapseAdvanced').on('shown.bs.collapse', function () {
|
||||
$("#showLogic").html('<span class="font-weight-bold text-muted">Nascondi</span>');
|
||||
$('#collapseAdvanced').on('shown.bs.collapse', function (e) {
|
||||
if (e.target.id == "collapseAdvanced") {
|
||||
$("#showLogic").html('<span class="font-weight-bold text-muted">Nascondi</span>');
|
||||
};
|
||||
})
|
||||
|
||||
$('.collapse').on('hide.bs.collapse', function (e) {
|
||||
|
@ -395,6 +397,7 @@ $(document).ready(function() {
|
|||
$("#cond" + condId).addClass( "condLI-OR bg-lida13" )
|
||||
};
|
||||
refreshClaList();
|
||||
refreshSortables();
|
||||
});
|
||||
|
||||
// Evento: click sul bottone di edit delle clausole e dei riferimenti
|
||||
|
|
Loading…
Reference in New Issue