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:
authorThomas Steur <thomas.steur@googlemail.com>2014-03-06 00:43:30 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-03-06 00:43:30 +0400
commit862e532af3672352a7f7e9eb2d763bcb0803f4e2 (patch)
tree1d950f74a30ea0ed9da7439048680d75677625dd /plugins/Insights/javascripts
parentbb0377a93114e13072e7403c7a7fd4feb2232723 (diff)
refs #57 removed min impact control as it might be not clear what it is anyway and user can change the limit filter if he wants to see only entries with very high impact
Diffstat (limited to 'plugins/Insights/javascripts')
-rw-r--r--plugins/Insights/javascripts/insightsDataTable.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/Insights/javascripts/insightsDataTable.js b/plugins/Insights/javascripts/insightsDataTable.js
index 3947c76c31..4dd4824c06 100644
--- a/plugins/Insights/javascripts/insightsDataTable.js
+++ b/plugins/Insights/javascripts/insightsDataTable.js
@@ -35,7 +35,6 @@
_init: function (domElem) {
this.initMinGrowthPercentage(domElem);
- this.initMinImpactPercent(domElem);
this.initShowIncreaseOrDecrease(domElem);
this.initOrderBy(domElem);
this.initComparedToXPeriodsAgo(domElem);
@@ -98,13 +97,6 @@
});
},
- initMinImpactPercent: function (domElem) {
- var self = this;
- $('[name=minImpactPercent]', domElem).bind('change', function (event) {
- self._changeParameterAndReload({min_impact_percent: getValueFromEvent(event)});
- });
- },
-
initComparedToXPeriodsAgo: function (domElem) {
var self = this;
$('[name=comparedToXPeriodsAgo]', domElem).bind('change', function (event) {