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>2020-03-23 23:41:03 +0300
committerGitHub <noreply@github.com>2020-03-23 23:41:03 +0300
commita02376ecf678a9c1678bc9083a2aea69d4842f7d (patch)
treed702e10a32298736d8356636eade9bf05dc6fde0 /plugins/SegmentEditor/javascripts/Segmentation.js
parentabd9c07913b776fd56402c16622ed81765be8c8b (diff)
Fix segment editor scrolling (#15719)
Diffstat (limited to 'plugins/SegmentEditor/javascripts/Segmentation.js')
-rw-r--r--plugins/SegmentEditor/javascripts/Segmentation.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/SegmentEditor/javascripts/Segmentation.js b/plugins/SegmentEditor/javascripts/Segmentation.js
index 1c5618b049..8b6efbce62 100644
--- a/plugins/SegmentEditor/javascripts/Segmentation.js
+++ b/plugins/SegmentEditor/javascripts/Segmentation.js
@@ -392,9 +392,6 @@ Segmentation = (function($) {
|| $(e.target).hasClass("filterNoResults")) {
e.stopPropagation();
} else {
- if (self.jscroll) {
- self.jscroll.destroy();
- }
self.target.closest('.segmentEditorPanel').removeClass('expanded');
}
} else {
@@ -402,10 +399,6 @@ Segmentation = (function($) {
closeAllOpenLists();
self.target.closest('.segmentEditorPanel').addClass('expanded');
self.target.find('.segmentFilter').val(self.translations['General_Search']).trigger('keyup');
- self.jscroll = self.target.find(".segmentList").jScrollPane({
- autoReinitialise: true,
- showArrows:true
- }).data().jsp;
}
});