diff --git a/src/main/actions/file.js b/src/main/actions/file.js index 98b8d9b7..1e227625 100644 --- a/src/main/actions/file.js +++ b/src/main/actions/file.js @@ -43,7 +43,6 @@ const handleResponseForSave = (e, { id, markdown, pathname, options }) => { return writeMarkdownFile(pathname, markdown, options, win) .then(() => { - console.log(pathname) const filename = path.basename(pathname) win.webContents.send('AGANI::set-pathname', { id, pathname, filename }) }) diff --git a/src/main/watcher.js b/src/main/watcher.js index 256fd795..c864ac08 100644 --- a/src/main/watcher.js +++ b/src/main/watcher.js @@ -71,7 +71,6 @@ const addDir = (win, pathname) => { } const unlinkDir = (win, pathname) => { - console.log(pathname) const directory = { pathname } win.webContents.send('AGANI::update-object-tree', { type: 'unlinkDir', diff --git a/src/renderer/components/sideBar/index.vue b/src/renderer/components/sideBar/index.vue index fff864e5..c82f917a 100644 --- a/src/renderer/components/sideBar/index.vue +++ b/src/renderer/components/sideBar/index.vue @@ -99,7 +99,6 @@ } const mouseDownHandler = event => { - console.log(startX) startX = event.clientX startWidth = +this.sideBarWidth document.addEventListener('mousemove', mouseMoveHandler, false) diff --git a/src/renderer/store/project.js b/src/renderer/store/project.js index ebe1a2d8..ed57d624 100644 --- a/src/renderer/store/project.js +++ b/src/renderer/store/project.js @@ -104,7 +104,6 @@ const actions = { commit('SET_SAVE_STATUS_WHEN_REMOVE', change) break case 'change': - console.log(change) commit('CHANGE_FILE', change) break case 'addDir':