Reduce timeline limit to 250 events

... maybe this will help improve responsiveness in firefox.
This commit is contained in:
Richard van der Hoff 2016-04-22 11:07:58 +01:00
parent d72d9260d4
commit afb301ffb7
2 changed files with 5 additions and 1 deletions

View file

@ -31,7 +31,7 @@ var KeyCode = require('../../KeyCode');
var PAGINATE_SIZE = 20;
var INITIAL_SIZE = 20;
var TIMELINE_CAP = 500; // the most events to show in a timeline
var TIMELINE_CAP = 250; // the most events to show in a timeline
var DEBUG = false;