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:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Live/javascripts/rowaction.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/Live/javascripts/rowaction.js b/plugins/Live/javascripts/rowaction.js
index b2f22fb74e..6cc399a7d4 100644
--- a/plugins/Live/javascripts/rowaction.js
+++ b/plugins/Live/javascripts/rowaction.js
@@ -67,6 +67,10 @@
DataTable_RowActions_SegmentVisitorLog.prototype.trigger = function (tr, e, subTableLabel) {
var segment = getRawSegmentValueFromRow(tr);
+ if (this.dataTable.param.segment) {
+ segment = decodeURIComponent(this.dataTable.param.segment) + ';' + segment;
+ }
+
this.performAction(segment, tr, e);
};