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

9 lines
186 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) {
2021-06-23 09:39:51 +02:00
return new Choices(item)
2021-06-15 14:16:07 +02:00
})
2021-03-24 12:27:07 +01:00
}