Skip to content

Commit

Permalink
Merge pull request civicrm#30773 from ufundo/font-picker-crm-i-namespace
Browse files Browse the repository at this point in the history
Add crm-i icon namespace class to font picker icon display
  • Loading branch information
mattwire authored Jul 30, 2024
2 parents 4d8f028 + 4952577 commit 365741b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery/jquery.crmIconPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
$.each(icons, function(i, icon) {
if (!term.length || icon.replace(/-/g, '').indexOf(term) > -1) {
var item = $('<a href="#" title="' + icon + '"/>').button({
icons: {primary: icon + ' ' + $style.val()}
icons: {primary: 'crm-i ' + icon + ' ' + $style.val()}
});
$place.append(item);
}
Expand Down

0 comments on commit 365741b

Please sign in to comment.