1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-27 14:09:41 +01:00

Fix loading btn in inserimento righe in fattura

This commit is contained in:
Luca 2019-11-23 07:36:05 +01:00
parent 215bf49e17
commit 35b1463884

View File

@ -769,13 +769,13 @@ $(".btn-sm[data-toggle=\"tooltip\"]").each(function() {
text: "'.tr('Alcuni campi obbligatori non sono stati compilati correttamente').'.",
});
$("#bs-popup").one("show.bs.modal", function (e) {
$(document).one("show.bs.modal","#bs-popup", function (e) {
return e.preventDefault();
});
}
$("#bs-popup").one("show.bs.modal", function (e) {
buttonRestore(btn, restore);
$(document).one("show.bs.modal","#bs-popup", function () {
buttonRestore(btn, restore);
});
});
});