diff options
author | aidahosa1 <aisosa_idahosa@brown.edu> | 2024-05-07 17:28:21 -0400 |
---|---|---|
committer | aidahosa1 <aisosa_idahosa@brown.edu> | 2024-05-07 17:28:21 -0400 |
commit | 8ca77556c3a9caba66faf37fbf259762c2084c0b (patch) | |
tree | a964d1974411e0452f4c0866cfafcd0bbc5fdac7 /src/client/documents/Documents.ts | |
parent | ba68af85177c9db3475532a13af08fd15f6b6ebe (diff) |
hm
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index c453fd793..b4aa1c90c 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -495,6 +495,12 @@ export class DocumentOptions { hoverBackgroundColor?: string; // background color of a label when hovered userBackgroundColor?: STRt = new StrInfo('background color associated with a Dash user (seen in header fields of shared documents)'); userColor?: STRt = new StrInfo('color associated with a Dash user (seen in header fields of shared documents)'); + + card_sort_time?: BOOLt = new BoolInfo('whether sorting cards in deck view by time'); + card_sort_type?: BOOLt = new BoolInfo('whether sorting cards in deck view by type'); + card_sort_color?: BOOLt = new BoolInfo('whether sorting cards in deck view by color'); + + } export const DocOptions = new DocumentOptions(); |