mirror of
https://github.com/a2nt/silverstripe-font-awesome.git
synced 2024-10-22 17:05:51 +02:00
19 lines
397 B
JavaScript
19 lines
397 B
JavaScript
(function ($) {
|
|
$.entwine(function ($) {
|
|
|
|
/**
|
|
* Class: .icp-auto
|
|
*
|
|
* Load the icon picker
|
|
*/
|
|
$('.icp-auto').entwine({
|
|
onmatch: function () {
|
|
$('.icp-auto').iconpicker({
|
|
hideOnSelect: true,
|
|
inputSearch: true
|
|
});
|
|
}
|
|
});
|
|
});
|
|
})(jQuery);
|