Skip to content

Commit

Permalink
refs #2834 do not apply max width on widget page
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteur committed Mar 18, 2014
1 parent 669fefd commit 88ed837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/CoreHome/javascripts/dataTable.js
Expand Up @@ -312,7 +312,7 @@ $.extend(DataTable.prototype, UIControl.prototype, {
labelWidth = totalWidth * 0.5;
}

if (labelWidth > maxLabelWidth) {
if (labelWidth > maxLabelWidth && -1 == location.search.indexOf('&widget=1')) {
labelWidth = maxLabelWidth;
}

Expand Down

0 comments on commit 88ed837

Please sign in to comment.