Files
sprocket-core/data/www/script.js
2018-08-29 09:57:58 +02:00

11 lines
259 B
JavaScript

$(() => {
// load config
$.get("/config.json", (data) => {
$('.js-config').val(JSON.stringify(data, null, 4));
});
// add handlers
$('.js-restart').click(()=>{
$.post('/restart');
alert('restarting...');
});
});