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:
authorMichal Gazdzik <m.gazdzik@clearcode.cc>2014-05-27 14:09:15 +0400
committerMichal Gazdzik <m.gazdzik@clearcode.cc>2014-05-27 14:09:15 +0400
commit58dd6ac5c06bb2d11097d9a98567c3a934ace924 (patch)
treef6d6ad31ff8764cfe2ea2f0342526d85f0048772 /plugins
parent78c87d836a03389c059150abb17ccd4098016921 (diff)
decreased segment name trimming limit so it does not break down layout when segment list has scrollbar displayed
Diffstat (limited to 'plugins')
-rw-r--r--plugins/SegmentEditor/javascripts/Segmentation.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SegmentEditor/javascripts/Segmentation.js b/plugins/SegmentEditor/javascripts/Segmentation.js
index 89a3d9b649..a24d945291 100644
--- a/plugins/SegmentEditor/javascripts/Segmentation.js
+++ b/plugins/SegmentEditor/javascripts/Segmentation.js
@@ -71,7 +71,7 @@ Segmentation = (function($) {
segmentation.prototype.shortenSegmentName = function(name, length){
- if(typeof length === "undefined") length = 20;
+ if(typeof length === "undefined") length = 18;
if(typeof name === "undefined") name = "";
var i;
@@ -1303,4 +1303,4 @@ $(document).ready(function() {
});
exports.SegmentSelectorControl = SegmentSelectorControl;
-}); \ No newline at end of file
+});