Attach event handlers to multi-field forms correctly
Closes #511. [#153179347]
This commit is contained in:
parent
80890ca97a
commit
107f712f0e
|
|
@ -564,11 +564,11 @@ function postprocess() {
|
||||||
update_manual($(this).attr('for'), $(this).attr('query'));
|
update_manual($(this).attr('for'), $(this).attr('query'));
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.multifield input').on('keyup', function() {
|
$(document).on('keyup', '.multifield input', function() {
|
||||||
update_multifields();
|
update_multifields();
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.multifield select').on('change', function() {
|
$(document).on('change', '.multifield select', function() {
|
||||||
update_multifields();
|
update_multifields();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue