mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
var comboBoxFields = $('.js-combobox');
|
|
|
|
if (comboBoxFields.length) {
|
|
comboBoxFields.select2({
|
|
width: "100%",
|
|
selectOnBlur: true,
|
|
dropdownAutoWidth: self === top
|
|
});
|
|
}
|