diff options
author | David Rothstein <drothstein@gmail.com> | 2013-04-01 17:24:49 -0400 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2013-04-01 17:24:49 -0400 |
commit | 8104ea72c28c1a78fe039f2a9f918d724b9ab545 (patch) | |
tree | d212cce75f007497c785c18ae4658dd2a147aa3a /misc | |
parent | b927d876e96d30d858f28887a558261e13d2f822 (diff) | |
download | brdo-8104ea72c28c1a78fe039f2a9f918d724b9ab545.tar.gz brdo-8104ea72c28c1a78fe039f2a9f918d724b9ab545.tar.bz2 |
Issue #1728122 by rymo | HonoredMule: Fixed Sticky Table header tables don't inherit parent table's outer width.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/tableheader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/tableheader.js b/misc/tableheader.js index a9f98a680..47201b269 100644 --- a/misc/tableheader.js +++ b/misc/tableheader.js @@ -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()); } }; |