silverstripe-font-awesome/js/font-awesome-module.js
2015-06-08 12:25:35 +12:00

21 lines
399 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);