cleanup
parent
f86a50b20b
commit
8aafb37864
|
@ -113,9 +113,7 @@ function tab_initialize_firmware_flasher() {
|
||||||
|
|
||||||
chrome.storage.local.get('no_reboot_sequence', function(result) {
|
chrome.storage.local.get('no_reboot_sequence', function(result) {
|
||||||
if (typeof result.no_reboot_sequence === 'undefined') {
|
if (typeof result.no_reboot_sequence === 'undefined') {
|
||||||
// wasn't saved yet, save and push false to the GUI
|
// wasn't saved yet
|
||||||
chrome.storage.local.set({'no_reboot_sequence': false});
|
|
||||||
|
|
||||||
$('input.updating').prop('checked', false);
|
$('input.updating').prop('checked', false);
|
||||||
} else {
|
} else {
|
||||||
if (result.no_reboot_sequence) {
|
if (result.no_reboot_sequence) {
|
||||||
|
@ -137,15 +135,13 @@ function tab_initialize_firmware_flasher() {
|
||||||
$('input.flash_on_connect').prop('checked', false).change();
|
$('input.flash_on_connect').prop('checked', false).change();
|
||||||
}
|
}
|
||||||
|
|
||||||
chrome.storage.local.set({'no_reboot_sequence': status}, function() {});
|
chrome.storage.local.set({'no_reboot_sequence': status});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
chrome.storage.local.get('flash_on_connect', function(result) {
|
chrome.storage.local.get('flash_on_connect', function(result) {
|
||||||
if (typeof result.flash_on_connect === 'undefined') {
|
if (typeof result.flash_on_connect === 'undefined') {
|
||||||
// wasn't saved yet, save and push false to the GUI
|
// wasn't saved yet
|
||||||
chrome.storage.local.set({'flash_on_connect': false});
|
|
||||||
|
|
||||||
$('input.flash_on_connect').prop('checked', false);
|
$('input.flash_on_connect').prop('checked', false);
|
||||||
} else {
|
} else {
|
||||||
if (result.flash_on_connect) {
|
if (result.flash_on_connect) {
|
||||||
|
@ -200,7 +196,7 @@ function tab_initialize_firmware_flasher() {
|
||||||
PortHandler.flush_callbacks();
|
PortHandler.flush_callbacks();
|
||||||
}
|
}
|
||||||
|
|
||||||
chrome.storage.local.set({'flash_on_connect': status}, function() {});
|
chrome.storage.local.set({'flash_on_connect': status});
|
||||||
}).change();
|
}).change();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue