Create Event Forms: changed other field logic from onkeyup to onchange event.

This commit is contained in:
2018-02-07 11:46:06 +01:00
parent c3c43f164e
commit 9b1d822202

View File

@@ -6,7 +6,7 @@
var e; var e;
for(var i = 0 ; i < other_inputs.length ; i++) { for(var i = 0 ; i < other_inputs.length ; i++) {
(function(other_input) { (function(other_input) {
other_input.onkeyup = function() { select_other_handler(other_input.name); }; other_input.onchange = function() { select_other_handler(other_input.name); };
})(other_inputs[i]); })(other_inputs[i]);
} }
} }