mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 09:08:47 +02:00
add some extra spacing
This commit is contained in:
parent
bdce4a71b6
commit
25666577f4
1 changed files with 3 additions and 1 deletions
|
@ -98,11 +98,12 @@ $(function() {
|
||||||
} else {
|
} else {
|
||||||
ipcRenderer.send('start-interface', { url: 'hifi://localhost' });
|
ipcRenderer.send('start-interface', { url: 'hifi://localhost' });
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
|
||||||
$('#manage-server #restart').click(function() {
|
$('#manage-server #restart').click(function() {
|
||||||
ipcRenderer.send('restart-server', { name: 'home' });
|
ipcRenderer.send('restart-server', { name: 'home' });
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#manage-server #stop').click(function(e) {
|
$('#manage-server #stop').click(function(e) {
|
||||||
if ($(this).hasClass('disabled')) {
|
if ($(this).hasClass('disabled')) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
@ -110,6 +111,7 @@ $(function() {
|
||||||
ipcRenderer.send('stop-server', { name: 'home' });
|
ipcRenderer.send('stop-server', { name: 'home' });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#open-logs').click(function() {
|
$('#open-logs').click(function() {
|
||||||
ipcRenderer.send('open-logs');
|
ipcRenderer.send('open-logs');
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue