collapsible.js: Remove useless `> tbody > th` row selector

This commit is contained in:
Johannes Meyer 2019-06-07 07:33:28 +02:00
parent ba44240b68
commit b8bdd743a2
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@
*/
Collapsible.prototype.getRowSelector = function ($collapsible) {
if ($collapsible.is('table')) {
return '> tbody > th, > tbody > tr';
return '> tbody > tr';
} else if ($collapsible.is('ul, ol')) {
return '> li';
}