mirror of
https://gitlab.com/wirelos/sprocket-lib.git
synced 2025-12-14 20:56:38 +01:00
11 lines
259 B
JavaScript
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...');
|
|
});
|
|
}); |