Files
sprocket-device-illucat/data/www/script.js
2018-09-13 01:17:11 +02:00

19 lines
483 B
JavaScript

$(() => {
$('form').each((i, el) => {
let $fEl = $(el);
$.get($fEl.find('[name="fileName"]').val(), (data) => {
$fEl.find('.js-config').val(JSON.stringify(data, null, 4));
});
});
// load config
//$.get("/config.json", (data) => {
// $('.js-config').val(JSON.stringify(data, null, 4));
//});
// add handlers
$('.js-restart').click(() => {
$.post('/restart');
alert('restarting...');
});
});