Merge pull request #7113 from electron/const-default-app
Use const instead of var in default app
This commit is contained in:
commit
540b1960a8
1 changed files with 4 additions and 4 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue