Skip to content

Commit

Permalink
Issue #1728122 by rymo | HonoredMule: Fixed Sticky Table header table…
Browse files Browse the repository at this point in the history
…s don't inherit parent table's outer width.
  • Loading branch information
DavidRothstein committed Apr 1, 2013
1 parent b927d87 commit 8104ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/tableheader.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
};

Expand Down

0 comments on commit 8104ea7

Please sign in to comment.