Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ADD: Validator password page #307

Merged
merged 14 commits into from
May 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 1 addition & 15 deletions launcher/src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,21 +151,7 @@ app.on("activate", () => {
if (BrowserWindow.getAllWindows().length === 0) createWindow();
});

// //electron drag&drop codes
// promiseIpc.on('ondragstart', (event, filePath) => {
// readFile(filePath);
// function readFile(filepath) {
// fs.readFile(filepath, 'utf-8', (err, data) => {
// if(err){
// alert("An error ocurred reading the file :" + err.message)
// return
// }
// // handle the file content
// event.sender.send('fileData', data)
// })
// }

// })


app.on("web-contents-created", (event, contents) => {
// open every new window in the OS's default browser instead of a
Expand Down
15 changes: 15 additions & 0 deletions launcher/src/components/UI/the-staking/DropZone.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<template>

</template>
<script>
export default {
props: ["keyFiles"],
data() {
return {};
},
methods: {},
};
</script>
<style scoped>
</style>
Loading