1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-25 11:37:22 +02:00

Better user interface

This commit is contained in:
Yohann D'ANELLO
2020-03-25 14:50:21 +01:00
parent 23db42e448
commit e5ab391236
4 changed files with 309 additions and 205 deletions

View File

@ -260,18 +260,6 @@ function autoCompleteNote(field_id, alias_matched_id, note_list_id, notes, notes
});
}
function hover_validation_btn(id, show) {
let reason_obj = $("#invalidity_reason_" + id);
console.log(reason_obj.val());
if (show) {
reason_obj.show();
reason_obj.focus();
}
else
reason_obj.hide();
}
// When a validate button is clicked, we switch the validation status
function in_validate(id, validated) {