mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-05 06:25:19 +00:00
show sdr device log messages in the web configuration
This commit is contained in:
parent
ab40a2934f
commit
13e323cdd2
13 changed files with 133 additions and 34 deletions
|
|
@ -159,4 +159,8 @@ h1 {
|
|||
|
||||
.imageupload.is-invalid ~ .invalid-feedback {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.device-log-messages {
|
||||
max-height: 500px;
|
||||
}
|
||||
5
htdocs/lib/settings/LogMessages.js
Normal file
5
htdocs/lib/settings/LogMessages.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
$.fn.logMessages = function() {
|
||||
$.each(this, function(){
|
||||
$(this).scrollTop(this.scrollHeight);
|
||||
});
|
||||
};
|
||||
|
|
@ -8,4 +8,5 @@ $(function(){
|
|||
$('.optional-section').optionalSection();
|
||||
$('#scheduler').schedulerInput();
|
||||
$('.exponential-input').exponentialInput();
|
||||
$('.device-log-messages').logMessages();
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue