aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/TooltipTextMenu.tsx
diff options
context:
space:
mode:
authorSam Wilkins <abdullah_ahmed@brown.edu>2019-04-09 17:24:11 -0400
committerSam Wilkins <abdullah_ahmed@brown.edu>2019-04-09 17:24:11 -0400
commitb7d02ec188ecf043300ed858fdb68148b3e52a71 (patch)
tree70510a08ad0d05f0881e6098ce33f7539ded733c /src/client/util/TooltipTextMenu.tsx
parent4790fd3ff75ace158c47823b5619440d8fd1d879 (diff)
exploring in-editor undo-redo
Diffstat (limited to 'src/client/util/TooltipTextMenu.tsx')
-rw-r--r--src/client/util/TooltipTextMenu.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/TooltipTextMenu.tsx b/src/client/util/TooltipTextMenu.tsx
index 4715fcc14..e84d48ce3 100644
--- a/src/client/util/TooltipTextMenu.tsx
+++ b/src/client/util/TooltipTextMenu.tsx
@@ -45,7 +45,7 @@ export class TooltipTextMenu {
{ command: toggleMark(schema.marks.subscript), dom: this.icon("s", "subscript") },
{ command: wrapInList(schema.nodes.bullet_list), dom: this.icon(":", "bullets") },
{ command: toggleMark(schema.marks.timesNewRoman), dom: this.icon("x", "TNR") },
- { command: lift, dom: this.icon("<", "lift") },
+ { command: undo, dom: this.icon("<", "lift") },
]
//add menu items
items.forEach(({ dom, command }) => {