We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a147d8b commit e559478Copy full SHA for e559478
1 file changed
modules/movimenti/add.php
@@ -115,6 +115,11 @@
115
return;
116
}
117
118
+ // Ignora l\'evento se un select2 è aperto o se il focus è su un elemento select2
119
+ if ($(".select2-container--open").length > 0 || $(event.target).closest(".select2-container").length > 0) {
120
+ return;
121
+ }
122
+
123
let key = window.event ? event.keyCode : event.which; // IE vs Netscape/Firefox/Opera
124
$("#articolo-missing").addClass("hidden");
125
let barcode = $("#barcode");
0 commit comments