Issue #1728122 by rymo | HonoredMule: Fixed Sticky Table header tables don't inherit parent table's outer width.

merge-requests/26/head
David Rothstein 2013-04-01 17:24:49 -04:00
parent b927d876e9
commit 8104ea72c2
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ Drupal.tableHeader.prototype.eventhandlerRecalculateStickyHeader = function (eve
$stickyCell.css('display', 'none');
}
}
this.stickyTable.css('width', this.originalTable.css('width'));
this.stickyTable.css('width', this.originalTable.outerWidth());
}
};