Commit 1dd0fc41 authored by dev0tion's avatar dev0tion

Add current styling

parent 75eb3bb7
...@@ -61,15 +61,15 @@ function createWindow() { ...@@ -61,15 +61,15 @@ function createWindow() {
if (process.platform !== 'darwin') { if (process.platform !== 'darwin') {
var http = require('http'); var http = require('http');
const options = { const options = {
hostname: 'localhost', hostname: 'localhost',
port: 5000, port: 5000,
path: '/api/node/shutdown', path: '/api/node/shutdown',
method: 'POST' method: 'POST'
}; };
const req = http.request(options, (res) => {}); const req = http.request(options, (res) => {});
req.write(''); req.write('');
req.end(); req.end();
} }
}); });
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment