This commit is contained in:
Kevin Sawicki 2016-09-06 11:58:06 -07:00
Родитель 02ce727ff6
Коммит 7bc45c328b
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -116,8 +116,8 @@
<script>
const {remote, shell} = require('electron');
var execPath = remote.process.execPath;
var command = execPath + ' path-to-your-app';
const execPath = remote.process.execPath;
const command = execPath + ' path-to-your-app';
document.onclick = function(e) {
e.preventDefault();
@ -195,7 +195,7 @@
</div>
<script>
var holder = document.getElementById('holder');
const holder = document.getElementById('holder');
holder.ondragover = function () {
this.className = 'hover';
return false;
@ -208,7 +208,7 @@
this.className = '';
e.preventDefault();
var file = e.dataTransfer.files[0];
const file = e.dataTransfer.files[0];
require('child_process').execFile(execPath, [file.path], {
detached: true, stdio: 'ignore'
}).unref();