mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-05 06:37:10 -04:00
Fixed.
This commit is contained in:
parent
4b8911dfee
commit
7ebef38089
1 changed files with 2 additions and 2 deletions
|
@ -39,13 +39,13 @@ exports.cleanText = (txt:string): string => txt.replace(/\r\n/g, '\n')
|
||||||
|
|
||||||
class Pad {
|
class Pad {
|
||||||
private db: Database;
|
private db: Database;
|
||||||
private readonly atext: AText;
|
private atext: AText;
|
||||||
private pool: APool;
|
private pool: APool;
|
||||||
private head: number;
|
private head: number;
|
||||||
private chatHead: number;
|
private chatHead: number;
|
||||||
private publicStatus: boolean;
|
private publicStatus: boolean;
|
||||||
private id: string;
|
private id: string;
|
||||||
private readonly savedRevisions: any[];
|
private savedRevisions: any[];
|
||||||
/**
|
/**
|
||||||
* @param id
|
* @param id
|
||||||
* @param [database] - Database object to access this pad's records (and only this pad's records;
|
* @param [database] - Database object to access this pad's records (and only this pad's records;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue