Skip to content

Commit

Permalink
Fix fontIconPicker Adobe-Consulting-Services#3431
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart Thierens committed Feb 12, 2025
1 parent 6932178 commit b970496
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com)

- #3471 - EmailService not working due to unsatisfied reference to MailTemplateManager in AEM on prem
- #3497 - Redirect Manager: allow creating redirect configurations in a nested hierarchy
- #3522 - Fix fontIconPicker javascript

## 6.9.10 - 2024-12-13

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@
* limitations under the License.
* #L%
*/
$(document).on('cui-contentloaded.data-api', function (e) {
$('[data-init~=graphiciconselect] > select').fontIconPicker({
'theme' : 'fip-coral'
(function($, $document) {
$(document).on('cui-contentloaded.data-api', function (e) {
$('[data-init~=graphiciconselect] > select').fontIconPicker({
'theme' : 'fip-coral'
});
});
});
}(jQuery, jQuery(document)));

0 comments on commit b970496

Please sign in to comment.