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:
authorStefan Giehl <stefan@matomo.org>2019-01-22 08:05:56 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2019-01-22 08:05:56 +0300
commitd24e794df6aa7e8ad31ed190de551a456df57f6f (patch)
treec02bca3b232f5a0fbadaaa97baacf66e4322de70 /plugins
parent224caccc8527123b6b0fd3e831122c689c64e707 (diff)
Use current segment also in Segmented Visitorlog (#13921)
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);
};