add some extra spacing

This commit is contained in:
Stephen Birarda 2015-12-23 15:10:48 -07:00
parent bdce4a71b6
commit 25666577f4

View file

@ -98,11 +98,12 @@ $(function() {
} else {
ipcRenderer.send('start-interface', { url: 'hifi://localhost' });
}
})
});
$('#manage-server #restart').click(function() {
ipcRenderer.send('restart-server', { name: 'home' });
});
$('#manage-server #stop').click(function(e) {
if ($(this).hasClass('disabled')) {
e.preventDefault();
@ -110,6 +111,7 @@ $(function() {
ipcRenderer.send('stop-server', { name: 'home' });
}
});
$('#open-logs').click(function() {
ipcRenderer.send('open-logs');
});