We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 771b840 commit b407740Copy full SHA for b407740
src/js/tabs/osd.js
@@ -3231,15 +3231,19 @@ osd.initialize = function(callback) {
3231
3232
// Generate tooltips for OSD elements
3233
$('.osd_tip').each(function() {
3234
- OSD.data.tooltips.push($(this).jBox('Tooltip', {
+ const myModal = new jBox('Tooltip', {
3235
delayOpen: 100,
3236
delayClose: 100,
3237
position: {
3238
x: 'right',
3239
y: 'center',
3240
},
3241
outside: 'x',
3242
- }));
+ });
3243
+
3244
+ myModal.attach($(this));
3245
3246
+ OSD.data.tooltips.push(myModal);
3247
});
3248
3249
}
0 commit comments