mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
[ticket/11957] Responsive forums list
PHPBB3-11957
This commit is contained in:
@@ -51,12 +51,7 @@ function parse_document(container)
|
||||
// Find columns
|
||||
$this.find('colgroup:first').children().each(function(i) {
|
||||
var column = $(this);
|
||||
if (column.hasClass('col1')) {
|
||||
$this.find('td:nth-child(' + (i + 1) + ')').addClass('col1');
|
||||
}
|
||||
if (column.hasClass('col2')) {
|
||||
$this.find('td:nth-child(' + (i + 1) + ')').addClass('col2');
|
||||
}
|
||||
$this.find('td:nth-child(' + (i + 1) + ')').addClass(column.prop('className'));
|
||||
});
|
||||
|
||||
// Find each header
|
||||
|
Reference in New Issue
Block a user