diff options
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(); |