mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-25 17:25:16 +03:00
avoid highlighting items in the Post Flight Statistics
This commit is contained in:
parent
106bd046a0
commit
dee13414ee
1 changed files with 2 additions and 2 deletions
|
@ -1935,11 +1935,11 @@ OSD.GUI = {};
|
|||
OSD.GUI.preview = {
|
||||
onMouseEnter: function () {
|
||||
if (!$(this).data('field')) { return; }
|
||||
$('.field-' + $(this).data('field').index).addClass('mouseover')
|
||||
$('#element-fields .field-' + $(this).data('field').index).addClass('mouseover')
|
||||
},
|
||||
onMouseLeave: function () {
|
||||
if (!$(this).data('field')) { return; }
|
||||
$('.field-' + $(this).data('field').index).removeClass('mouseover')
|
||||
$('#element-fields .field-' + $(this).data('field').index).removeClass('mouseover')
|
||||
},
|
||||
onDragStart: function (e) {
|
||||
var ev = e.originalEvent;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue