Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-03-19 01:39:25 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-03-19 01:39:25 +0400
commit8564680608e61b198356e0cf44d869c3a592b7ba (patch)
tree4ae1a9168e4273ca1ef833c16c6282aeee050f5a /plugins/CoreHome
parente291b732eb2f1a09ac8996d1c859c1cd327cfc45 (diff)
#2834 check for widgetize module to fix ui tests
Diffstat (limited to 'plugins/CoreHome')
-rw-r--r--plugins/CoreHome/javascripts/dataTable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreHome/javascripts/dataTable.js b/plugins/CoreHome/javascripts/dataTable.js
index a36f70e5bf..8ac4fb6459 100644
--- a/plugins/CoreHome/javascripts/dataTable.js
+++ b/plugins/CoreHome/javascripts/dataTable.js
@@ -322,7 +322,7 @@ $.extend(DataTable.prototype, UIControl.prototype, {
labelWidth = tableWidth * 0.5;
}
- if (labelWidth > maxLabelWidth && -1 == location.search.indexOf('&widget=1')) {
+ if (labelWidth > maxLabelWidth && -1 == location.search.indexOf('module=Widgetize')) {
labelWidth = maxLabelWidth; // prevent for instance table in Actions-Pages is not too wide
}