Skip to content

Commit

Permalink
#2836 dataTables: fixing extra line
Browse files Browse the repository at this point in the history
  • Loading branch information
Alice Trofimova committed Jan 16, 2016
1 parent c11432c commit 66544da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -821,8 +821,8 @@
var me = $('#' + scope.id);
// this is dataTables_scrollBody
var pp = me.parent();
if (pp.width() > me.width() + 16) {
pp.width(me.width() + 16);
if (pp.width() > me.width()) {
pp.width(me.width());
}
if (scope.fixcols)
scope.fixcols.fnRedrawLayout();
Expand Down

0 comments on commit 66544da

Please sign in to comment.