Skip to content

Commit

Permalink
Restored New Todo option
Browse files Browse the repository at this point in the history
  • Loading branch information
klaudiosinani committed Jan 3, 2019
1 parent ff33405 commit 604ce40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/browser.js
Expand Up @@ -10,7 +10,7 @@ ipc.on('search', () => {
});

ipc.on('new-list', () => {
nav.click('.addList');
nav.click('#baseAddInput');
});

ipc.on('delete-list', () => {
Expand All @@ -28,7 +28,7 @@ ipc.on('hide-todo', () => {
});

ipc.on('new-todo', () => {
nav.click('.addTask-icon');
nav.click('#main > div.main-background > div.baseAdd.addTask > button');
});

ipc.on('rename-todo', () => {
Expand Down

0 comments on commit 604ce40

Please sign in to comment.