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:
authorJesse <jesse@orangecoding.com>2015-01-07 19:51:25 +0300
committerJesse <jesse@orangecoding.com>2015-01-07 19:51:25 +0300
commitbf0b147752d1b7c844f1c5084fe84c0c4a3e2e71 (patch)
treef9c8fb0968dbbaa7b56afe21cf5601393df650bb /plugins/SegmentEditor/javascripts/Segmentation.js
parentfb585d71af71e897c13fe955586c3e4e4029f1e1 (diff)
Removed the segmentation.prototype.shortenSegmentName function and its usage throughout the code.
Diffstat (limited to 'plugins/SegmentEditor/javascripts/Segmentation.js')
-rw-r--r--plugins/SegmentEditor/javascripts/Segmentation.js19
1 files changed, 3 insertions, 16 deletions
diff --git a/plugins/SegmentEditor/javascripts/Segmentation.js b/plugins/SegmentEditor/javascripts/Segmentation.js
index 13126b2ccd..2c53ebdba6 100644
--- a/plugins/SegmentEditor/javascripts/Segmentation.js
+++ b/plugins/SegmentEditor/javascripts/Segmentation.js
@@ -69,18 +69,6 @@ Segmentation = (function($) {
this.currentSegmentStr = segmentStr;
};
- segmentation.prototype.shortenSegmentName = function(name, length){
-
- if(typeof length === "undefined") length = 18;
- if(typeof name === "undefined") name = "";
- var i;
-
- if(name.length > length) {
- return name.slice(0, length).trim() + "...";
- }
- return name;
- };
-
segmentation.prototype.markCurrentSegment = function(){
var current = this.getSegment();
@@ -223,8 +211,7 @@ Segmentation = (function($) {
injClass = 'class="segmentSelected"';
}
listHtml += '<li data-idsegment="'+segment.idsegment+'" data-definition="'+ (segment.definition).replace(/"/g, '&quot;') +'" '
- + injClass +' title="'+segment.name+'"><span class="segname">'
- + self.shortenSegmentName(segment.name)+'</span>';
+ +injClass+' title="'+segment.name+'"><span class="segname">'+segment.name+'</span>';
if(self.segmentAccess == "write") {
listHtml += '<span class="editSegment" title="'+ self.translations['General_Edit'].toLocaleLowerCase() +'"></span>';
}
@@ -258,7 +245,7 @@ Segmentation = (function($) {
for(var i = 0; i < self.availableSegments.length; i++)
{
segment = self.availableSegments[i];
- newOption = '<option data-idsegment="'+segment.idsegment+'" data-definition="'+(segment.definition).replace(/"/g, '&quot;')+'" title="'+segment.name+'">'+self.shortenSegmentName(segment.name)+'</option>';
+ newOption = '<option data-idsegment="'+segment.idsegment+'" data-definition="'+(segment.definition).replace(/"/g, '&quot;')+'" title="'+segment.name+'">'+segment.name+'</option>';
segmentsDropdown.append(newOption);
}
$(html).find(".segment-content > h3").after(getInitialStateRowsHtml()).show();
@@ -334,7 +321,7 @@ Segmentation = (function($) {
$(self.form).find(".segment-content > h3 > span").text(segment.name);
$(self.form).find('.available_segments_select > option[data-idsegment="'+segment.idsegment+'"]').prop("selected",true);
- $(self.form).find('.available_segments a.dropList').text(self.shortenSegmentName(segment.name));
+ $(self.form).find('.available_segments a.dropList').text(segment.name);
if(segment.definition != ""){
revokeInitialStateRows();