mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
9 lines
195 B
Plaintext
9 lines
195 B
Plaintext
//= require select2
|
|
jQuery(function($) {
|
|
// Make select beautiful
|
|
if (typeof $('select.select2').select2 === 'function' )
|
|
$('select.select2').select2({
|
|
allowClear: true
|
|
});
|
|
})
|