-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding save functionality; bumping ove version to get multiple fixes-…
…- drag fix -- window resize fix
- Loading branch information
Showing
6 changed files
with
520 additions
and
736 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
const electron = require("electron"); | ||
const {jsonToGenbank} = require("bio-parsers"); | ||
const { dialog } = require('electron').remote | ||
|
||
const currentWindow = electron.remote.getCurrentWindow(); | ||
const { ipcRenderer } = require("electron"); | ||
Object.assign(window, { | ||
currentWindow, | ||
ipcRenderer | ||
}); | ||
ipcRenderer, | ||
jsonToGenbank, | ||
dialog | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,6 @@ | |
top: 5px; | ||
right: 5px; | ||
} | ||
.bp3-toast-container { | ||
z-index: 100000000; | ||
} |
Oops, something went wrong.