Create Event Forms: changed other field logic from onkeyup to onchange event.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
var e;
|
||||
for(var i = 0 ; i < other_inputs.length ; i++) {
|
||||
(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]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user