1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-16 04:45:20 +03:00

Made tooltip wider.

This commit is contained in:
Michael Keller 2019-10-09 16:18:27 +13:00
parent 5655f099f9
commit 23ec6d1f2e
3 changed files with 18 additions and 1 deletions

View file

@ -360,6 +360,20 @@ GUI_control.prototype.content_ready = function (callback) {
outside: 'x'
});
new jBox('Tooltip', {
theme: 'Widetip',
attach: '.cf_tip_wide',
trigger: 'mouseenter',
closeOnMouseleave: true,
closeOnClick: 'body',
delayOpen: 100,
delayClose: 100,
position: {
x: 'right',
y: 'center'
},
outside: 'x'
});
});
if (callback) callback();