Skip to content

Commit

Permalink
Grouping: Fixing self closing icon tags to support jQuery 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenzeng55 authored and Mottie committed Aug 13, 2020
1 parent 119d020 commit 53b84c3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/js/jquery.tablesorter.combined.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
widthFixed : false, // adds colgroup to fix widths of columns
showProcessing : false, // show an indeterminate timer icon in the header when the table is sorted or filtered.

headerTemplate : '{content}',// header layout template (HTML ok); {content} = innerHTML, {icon} = <i/> // class from cssIcon
headerTemplate : '{content}',// header layout template (HTML ok); {content} = innerHTML, {icon} = <i></i> // class from cssIcon
onRenderTemplate : null, // function( index, template ) { return template; }, // template is a string
onRenderHeader : null, // function( index ) {}, // nothing to return

Expand Down
2 changes: 1 addition & 1 deletion dist/js/jquery.tablesorter.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
widthFixed : false, // adds colgroup to fix widths of columns
showProcessing : false, // show an indeterminate timer icon in the header when the table is sorted or filtered.

headerTemplate : '{content}',// header layout template (HTML ok); {content} = innerHTML, {icon} = <i/> // class from cssIcon
headerTemplate : '{content}',// header layout template (HTML ok); {content} = innerHTML, {icon} = <i></i> // class from cssIcon
onRenderTemplate : null, // function( index, template ) { return template; }, // template is a string
onRenderHeader : null, // function( index ) {}, // nothing to return

Expand Down
2 changes: 1 addition & 1 deletion dist/js/widgets/widget-grouping.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/example-widget-align-character.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
theme: 'blue',
widgets: ['zebra', 'alignChar'],
widgetOptions : {
alignChar_wrap : '<i/>',
alignChar_wrap : '<i></i>',
alignChar_charAttrib : 'data-align-char',
alignChar_indexAttrib : 'data-align-index',
alignChar_adjustAttrib : 'data-align-adjust' // percentage width adjustments
Expand Down
2 changes: 1 addition & 1 deletion js/jquery.tablesorter.combined.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
widthFixed : false, // adds colgroup to fix widths of columns
showProcessing : false, // show an indeterminate timer icon in the header when the table is sorted or filtered.

headerTemplate : '{content}',// header layout template (HTML ok); {content} = innerHTML, {icon} = <i/> // class from cssIcon
headerTemplate : '{content}',// header layout template (HTML ok); {content} = innerHTML, {icon} = <i></i> // class from cssIcon
onRenderTemplate : null, // function( index, template ) { return template; }, // template is a string
onRenderHeader : null, // function( index ) {}, // nothing to return

Expand Down
2 changes: 1 addition & 1 deletion js/jquery.tablesorter.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
widthFixed : false, // adds colgroup to fix widths of columns
showProcessing : false, // show an indeterminate timer icon in the header when the table is sorted or filtered.

headerTemplate : '{content}',// header layout template (HTML ok); {content} = innerHTML, {icon} = <i/> // class from cssIcon
headerTemplate : '{content}',// header layout template (HTML ok); {content} = innerHTML, {icon} = <i></i> // class from cssIcon
onRenderTemplate : null, // function( index, template ) { return template; }, // template is a string
onRenderHeader : null, // function( index ) {}, // nothing to return

Expand Down
2 changes: 1 addition & 1 deletion js/widgets/widget-grouping.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
'" unselectable="on" ' + ( c.tabIndex ? 'tabindex="0" ' : '' ) + 'data-group-index="' +
data.groupIndex + '">' +
'<td colspan="' + c.columns + '">' +
( wo.group_collapsible ? '<i/>' : '' ) +
( wo.group_collapsible ? '<i></i>' : '' ) +
'<span class="group-name">' + name + '</span>' +
'<span class="group-count"></span>' +
'</td></tr>';
Expand Down

0 comments on commit 53b84c3

Please sign in to comment.