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:
authorMatthieu Aubry <matt@piwik.org>2014-05-28 03:08:34 +0400
committerMatthieu Aubry <matt@piwik.org>2014-05-28 03:08:34 +0400
commitc5211e49d40795dd9c88faacb27f452c2a476847 (patch)
treeb85d1050a7029a67f931ae861b99a31047635529 /plugins
parente23557dad21a5ff6d9acd4729c4af4d94ea492dd (diff)
parent58dd6ac5c06bb2d11097d9a98567c3a934ace924 (diff)
Merge pull request #293 from mgazdzik/shortenSegmentNames
decreased segment name truncation limit. Cheers for PR!
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
+});