diff --git a/docs/index.html b/docs/index.html
index 1bf434e8..be94d280 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -4816,19 +4816,26 @@ $('table').trigger('search', false);
$.extend($.tablesorter.themes.jui, {
// change default jQuery uitheme icons - find the full list of icons
// here: http://jqueryui.com/themeroller/ (hover over them for their name)
- table : 'ui-widget ui-widget-content ui-corner-all', // table classes
- header : 'ui-widget-header ui-corner-all ui-state-default', // header classes
- footerRow : '',
- footerCells: '',
- icons : 'ui-icon', // icon class added to the <i> in the header
- sortNone : 'ui-icon-carat-2-n-s',
- sortAsc : 'ui-icon-carat-1-n',
- sortDesc : 'ui-icon-carat-1-s',
- active : 'ui-state-active', // applied when column is sorted
- hover : 'ui-state-hover', // hover class
- filterRow : '',
- even : 'ui-widget-content', // even row zebra striping
- odd : 'ui-state-default' // odd row zebra striping
+ table : 'ui-widget ui-widget-content ui-corner-all', // table classes
+ caption : 'ui-widget-content',
+ // header class names
+ header : 'ui-widget-header ui-corner-all ui-state-default', // header classes
+ sortNone : '',
+ sortAsc : '',
+ sortDesc : '',
+ active : 'ui-state-active', // applied when column is sorted
+ hover : 'ui-state-hover', // hover class
+ // icon class names
+ icons : 'ui-icon', // icon class added to the in the header
+ iconSortNone : 'ui-icon-carat-2-n-s ui-icon-caret-2-n-s', // "caret" class renamed in jQuery v1.12.0
+ iconSortAsc : 'ui-icon-carat-1-n ui-icon-caret-1-n',
+ iconSortDesc : 'ui-icon-carat-1-s ui-icon-caret-1-s',
+ // other
+ filterRow : '',
+ footerRow : '',
+ footerCells : '',
+ even : 'ui-widget-content', // even row zebra striping
+ odd : 'ui-state-default' // odd row zebra striping
});
This widget option replaces the previous widgetUitheme. All theme css names are now contained within the $.tablesorter.themes
variable. Extend the default theme as seen above.
diff --git a/js/widgets/widget-uitheme.js b/js/widgets/widget-uitheme.js
index f76890d1..36ad96bf 100644
--- a/js/widgets/widget-uitheme.js
+++ b/js/widgets/widget-uitheme.js
@@ -37,9 +37,9 @@
hover : 'ui-state-hover', // hover class
// icon class names
icons : 'ui-icon', // icon class added to the in the header
- iconSortNone : 'ui-icon-carat-2-n-s', // class name added to icon when column is not sorted
- iconSortAsc : 'ui-icon-carat-1-n', // class name added to icon when column has ascending sort
- iconSortDesc : 'ui-icon-carat-1-s', // class name added to icon when column has descending sort
+ iconSortNone : 'ui-icon-carat-2-n-s ui-icon-caret-2-n-s', // class name added to icon when column is not sorted
+ iconSortAsc : 'ui-icon-carat-1-n ui-icon-caret-1-n', // class name added to icon when column has ascending sort
+ iconSortDesc : 'ui-icon-carat-1-s ui-icon-caret-1-s', // class name added to icon when column has descending sort
filterRow : '',
footerRow : '',
footerCells : '',