8 lines
251 B
JavaScript
8 lines
251 B
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
const assignedTo = document.getElementById('assigned_to');
|
|
if (assignedTo) {
|
|
const choices = new Choices(assignedTo, {
|
|
removeItemButton: true,
|
|
});
|
|
}
|
|
}); |