summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2013-04-01 17:24:49 -0400
committerDavid Rothstein <drothstein@gmail.com>2013-04-01 17:24:49 -0400
commit8104ea72c28c1a78fe039f2a9f918d724b9ab545 (patch)
treed212cce75f007497c785c18ae4658dd2a147aa3a /misc
parentb927d876e96d30d858f28887a558261e13d2f822 (diff)
downloadbrdo-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.js2
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());
}
};