We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07eea76 commit 627845fCopy full SHA for 627845f
1 file changed
browser/main/index.js
@@ -25,6 +25,15 @@ window.addEventListener('online', function () {
25
ipc.send('check-update', 'check-update')
26
})
27
28
+document.addEventListener('drop', function (e) {
29
+ e.preventDefault()
30
+ e.stopPropagation()
31
+})
32
+document.addEventListener('dragover', function (e) {
33
34
35
36
+
37
function notify (title, options) {
38
if (process.platform === 'win32') {
39
options.icon = path.join('file://', global.__dirname, '../../resources/app.png')
0 commit comments