murph-skeleton/assets/js/admin/modules/choices.js

9 lines
179 B
JavaScript
Raw Normal View History

2021-06-15 14:16:07 +02:00
const Choices = require('choices.js')
const $ = require('jquery')
2021-03-24 12:27:07 +01:00
2021-06-15 14:16:07 +02:00
module.exports = function () {
$('*[data-jschoice]').each(function (key, item) {
new Choices(item)
})
2021-03-24 12:27:07 +01:00
}