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 <tsteur@users.noreply.github.com>2017-02-11 05:08:57 +0300
committerGitHub <noreply@github.com>2017-02-11 05:08:57 +0300
commitace9c4f8f7d079a928f29f1820d07ef5a459536c (patch)
tree39bc59bea4dfc633203b26fd3d173907ff4bc6c6 /plugins/CoreHome/javascripts/dataTable.js
parent4971c11b7bf7d534e14ec48263fd008e0010f9a2 (diff)
disable when there are more than 255 rows
Diffstat (limited to 'plugins/CoreHome/javascripts/dataTable.js')
-rw-r--r--plugins/CoreHome/javascripts/dataTable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreHome/javascripts/dataTable.js b/plugins/CoreHome/javascripts/dataTable.js
index c74ae26fcd..e17f69d4ba 100644
--- a/plugins/CoreHome/javascripts/dataTable.js
+++ b/plugins/CoreHome/javascripts/dataTable.js
@@ -96,7 +96,7 @@ $.extend(DataTable.prototype, UIControl.prototype, {
this.workingDivId = this._createDivId();
domElem.attr('id', this.workingDivId);
- this.maxNumRowsToHandleEvents = 250;
+ this.maxNumRowsToHandleEvents = 255;
this.loadedSubDataTable = {};
this.isEmpty = $('.pk-emptyDataTable', domElem).length > 0;
this.bindEventsAndApplyStyle(domElem);