aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/TooltipTextMenu.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-08-25 22:55:51 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-08-25 22:55:51 -0400
commit939074601016a674d6a01922bab1383684fce63f (patch)
tree070f4a9852eee3dd691d3c68ebbee6d47099ee0f /src/client/util/TooltipTextMenu.tsx
parent3531339719a70f73b3cc2312aeeafdc64c8574c4 (diff)
added sub-bullet types to prosemirror
Diffstat (limited to 'src/client/util/TooltipTextMenu.tsx')
-rw-r--r--src/client/util/TooltipTextMenu.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/util/TooltipTextMenu.tsx b/src/client/util/TooltipTextMenu.tsx
index 4672dd246..7a0c6f8c5 100644
--- a/src/client/util/TooltipTextMenu.tsx
+++ b/src/client/util/TooltipTextMenu.tsx
@@ -172,6 +172,9 @@ export class TooltipTextMenu {
this.listTypeToIcon = new Map();
this.listTypeToIcon.set(schema.nodes.bullet_list, ":");
this.listTypeToIcon.set(schema.nodes.ordered_list, "1)");
+ this.listTypeToIcon.set(schema.nodes.alphabet_list, "a)");
+ this.listTypeToIcon.set(schema.nodes.cap_alphabet_list, "A)");
+ this.listTypeToIcon.set(schema.nodes.roman_list, "i.");
// this.listTypeToIcon.set(schema.nodes.bullet_list, "⬜");
this.listTypes = Array.from(this.listTypeToIcon.keys());