15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
// npm package: select2
|
|
// github link: https://github.com/select2/select2
|
|
|
|
'use strict';
|
|
|
|
(function () {
|
|
|
|
if ($(".js-example-basic-single").length) {
|
|
$(".js-example-basic-single").select2();
|
|
}
|
|
if ($(".js-example-basic-multiple").length) {
|
|
$(".js-example-basic-multiple").select2();
|
|
}
|
|
|
|
})(); |