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

19 lines
397 B
JavaScript
Raw Permalink Normal View History

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