Move all status/alert dialogs into the Left Pane
This commit is contained in:
parent
101070bf42
commit
18fd44f504
50 changed files with 1298 additions and 607 deletions
6
ts/types/Dialogs.ts
Normal file
6
ts/types/Dialogs.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
export enum Dialogs {
|
||||
None,
|
||||
Update,
|
||||
Cannot_Update,
|
||||
MacOS_Read_Only,
|
||||
}
|
8
ts/types/SocketStatus.ts
Normal file
8
ts/types/SocketStatus.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
// Maps to values found here: https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/readyState
|
||||
// which are returned by libtextsecure's MessageReceiver
|
||||
export enum SocketStatus {
|
||||
CONNECTING,
|
||||
OPEN,
|
||||
CLOSING,
|
||||
CLOSED,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue