Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // insert inside created()
  2.  
  3. electron.ipcRenderer.on("help-update-hack", () => {
  4. if (this.$global.editor.mode === 2) {
  5. this.$global.editor.mode = 3;
  6. this.$global.$emit("editor-mode-change", 3, true);
  7. } else {
  8. this.$global.editor.mode = 2;
  9. }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement