mirror of
https://github.com/a2nt/silverstripe-font-awesome.git
synced 2024-10-22 15:05:51 +00:00
26 lines
646 B
JavaScript
26 lines
646 B
JavaScript
(function($) {
|
|
$.entwine(function($) {
|
|
|
|
/**
|
|
* Class: .icp-auto
|
|
*
|
|
* Load the icon picker
|
|
*/
|
|
$('.icp-auto').entwine({
|
|
onmatch: function() {
|
|
$('.icp-auto').iconpicker({
|
|
animation: false,
|
|
collision: true,
|
|
hideOnSelect: false,
|
|
placement: 'inline'
|
|
});
|
|
|
|
// prevent redirect
|
|
$('.iconpicker-popover .iconpicker-item').click(function(e) {
|
|
e.preventDefault()
|
|
});
|
|
}
|
|
});
|
|
});
|
|
})(jQuery);
|