-
+ Undo (Ctrl + Z)
- Redo (Ctrl + Y)
- Save (Ctrl + S)
+ New Workflow
+ Open
+ Save
Save As
- Export
- Open
+ Export
+
+
+
+
Undo
+ Redo
+ Edit Description
+ Run Linter
diff --git a/editor.js b/editor.js
index fcbbe68..395cede 100644
--- a/editor.js
+++ b/editor.js
@@ -11,6 +11,7 @@ function toggleTheme() {
Array.from(item.getElementsByClassName('submenu')).forEach(subMenu => menus.push(subMenu))
);
Array.from(fileMenu.children).forEach(child => menus.push(child));
+ Array.from(document.getElementById('editmenu').children).forEach(child => menus.push(child));
Array.from(contextMenuBg.children).forEach(child => menus.push(child));
Array.from(contextMenuEd.children).forEach(child => menus.push(child));
Array.from(contextMenuSt.children).forEach(child => menus.push(child));
@@ -108,6 +109,10 @@ function openFileMenu(menuitem) {
openMenuItem(menuitem);
}
+function openEditMenu(menuitem) {
+ openMenuItem(menuitem);
+}
+
function openViewMenu(menuitem) {
openMenuItem(menuitem);
}