You've already forked element-web
mirror of
https://github.com/element-hq/element-web.git
synced 2025-12-01 09:58:03 +03:00
Reduce timeline limit to 250 events
... maybe this will help improve responsiveness in firefox.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
Changes in <unreleased>
|
||||||
|
=======================
|
||||||
|
* Reduce number of events shown in a room to 250, to improve responsiveness
|
||||||
|
|
||||||
Changes in [0.5.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.5.1) (2016-04-19)
|
Changes in [0.5.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.5.1) (2016-04-19)
|
||||||
===================================================================================================
|
===================================================================================================
|
||||||
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.4.0...v0.5.1)
|
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v0.4.0...v0.5.1)
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ var KeyCode = require('../../KeyCode');
|
|||||||
|
|
||||||
var PAGINATE_SIZE = 20;
|
var PAGINATE_SIZE = 20;
|
||||||
var INITIAL_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;
|
var DEBUG = false;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user