mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
Change changesetLoader to run every 200ms:wq
This commit is contained in:
parent
b8591edc8d
commit
ccfb0e2d56
2 changed files with 3 additions and 3 deletions
|
@ -109,7 +109,7 @@ $.Class("RevisionSlider",
|
|||
while (str.length < length)
|
||||
str = '0' + str;
|
||||
return str;
|
||||
}
|
||||
};
|
||||
var months = [
|
||||
html10n.get("timeslider.month.january"),
|
||||
html10n.get("timeslider.month.february"),
|
||||
|
|
|
@ -419,7 +419,7 @@ Thread("ChangesetLoader",
|
|||
* for communication with the server.
|
||||
*/
|
||||
init: function (connection) {
|
||||
this._super(2000);
|
||||
this._super(200);
|
||||
this.connection = connection;
|
||||
this.queues = {
|
||||
small: [],
|
||||
|
@ -575,7 +575,7 @@ $.Class("PadClient",
|
|||
if (atRevision_callback)
|
||||
atRevision_callback.call(this, this.revision, this.timestamp);
|
||||
return;
|
||||
};
|
||||
}
|
||||
|
||||
this.revisionCache.transition(this.revision.revnum, revnum, function (path) {
|
||||
console.log("[padclient > applyChangeset_callback] path:", path);
|
||||
|
|
Loading…
Reference in a new issue