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

View File

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