Skip to content

Commit 751e32c

Browse files
Merge pull request BroadleafCommerce#76 from BroadleafCommerce/qa-1034-tooltip-fix
Added fix so that tooltips are reloaded on tab switch
2 parents 552c876 + ea0372e commit 751e32c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

admin/broadleaf-open-admin-platform/src/main/resources/open_admin_style/js/admin/lib/plugins/jquery.foundation.tabs.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020

2121
events : function () {
2222
$(document).on('click.fndtn', '.tabs a', function (e) {
23-
methods.set_tab($(this).parent('dd, li'), e);
23+
methods.set_tab($(this).parent('dd, li'), e);
24+
$('body').foundationTooltips('reload');
2425
});
2526

2627
settings.init = true;

0 commit comments

Comments
 (0)