mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-17 21:35:33 +03:00
Moved dialog to main page
And fixed some strings in messages.json
This commit is contained in:
parent
69603ee46b
commit
69cd83abdd
7 changed files with 28 additions and 43 deletions
|
@ -760,3 +760,15 @@ function showErrorDialog(message) {
|
|||
|
||||
dialog.showModal();
|
||||
}
|
||||
|
||||
function showDialogDynFiltersChange() {
|
||||
const dialogDynFiltersChange = $('.dialogDynFiltersChange')[0];
|
||||
|
||||
if (!dialogDynFiltersChange.hasAttribute('open')) {
|
||||
dialogDynFiltersChange.showModal();
|
||||
|
||||
$('.dialogDynFiltersChange-confirmbtn').click(function() {
|
||||
dialogDynFiltersChange.close();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue