silverstripe-font-awesome/js/font-awesome-module.js

19 lines
397 B
JavaScript
Raw Normal View History

2015-06-08 02:25:35 +02:00
(function ($) {
$.entwine(function ($) {
2015-05-09 05:55:15 +02:00
2015-06-08 02:25:35 +02:00
/**
* Class: .icp-auto
*
* Load the icon picker
*/
$('.icp-auto').entwine({
onmatch: function () {
$('.icp-auto').iconpicker({
hideOnSelect: true,
inputSearch: true
});
}
});
2015-05-10 02:00:14 +02:00
});
2015-06-08 02:25:35 +02:00
})(jQuery);