1
0
Fork 0
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:
Kyle K 2019-07-15 08:06:26 +00:00
parent 106bd046a0
commit dee13414ee

View file

@ -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;