mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-02 18:10:18 +05:30
fix(renderer): add missing closing brace for redo IPC handler
The ipcRenderer.on('redo') callback was missing its closing });
introduced in a9e05d2, causing SyntaxError: Unexpected end of input.
Amit Haridas
This commit is contained in:
@@ -2041,6 +2041,8 @@ ipcRenderer.on('redo', () => {
|
||||
redo(tab.editorView);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Custom Preview CSS event handlers and trigger helpers
|
||||
function applyCustomPreviewCSS(cssContent) {
|
||||
let styleTag = document.getElementById('custom-preview-style');
|
||||
|
||||
Reference in New Issue
Block a user