mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
5 lines
166 B
JavaScript
5 lines
166 B
JavaScript
$(document).ready(() => $('.dropdown-picker li a').click(function() {
|
|
const val = $(this).text();
|
|
$(this).closest('.row').find('input[type=text]').val(val);
|
|
}));
|