Skip to content

Commit

Permalink
Fix #10740: 13.0.2 ColumnToggler cleanse tooltips (#10746)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Sep 29, 2023
1 parent abbe727 commit df421ee
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ PrimeFaces.widget.ColumnToggler = PrimeFaces.widget.DeferredWidget.extend({
iconClass = (hidden) ? 'ui-chkbox-icon ui-icon ui-icon-blank' : 'ui-chkbox-icon ui-icon ui-icon-check',
columnChildren = column.children('.ui-column-title').clone(),
columnTogglerCheckboxId = this.tableId + "_columnTogglerChkbx" + i;
columnChildren.children().find('script').remove(); // GitHub #9647 remove scripts
columnChildren.find('script').remove(); // GitHub #9647 remove scripts
columnChildren.find('.ui-tooltip-text').remove(); // GitHub #10740 remove tooltips
var columnTitle = columnChildren.text();

var label = columnChildren.find('label');
Expand Down

0 comments on commit df421ee

Please sign in to comment.