Fix OSD jBox Modal (#3248)
parent
771b840095
commit
b4077405a0
|
@ -3231,7 +3231,7 @@ osd.initialize = function(callback) {
|
||||||
|
|
||||||
// Generate tooltips for OSD elements
|
// Generate tooltips for OSD elements
|
||||||
$('.osd_tip').each(function() {
|
$('.osd_tip').each(function() {
|
||||||
OSD.data.tooltips.push($(this).jBox('Tooltip', {
|
const myModal = new jBox('Tooltip', {
|
||||||
delayOpen: 100,
|
delayOpen: 100,
|
||||||
delayClose: 100,
|
delayClose: 100,
|
||||||
position: {
|
position: {
|
||||||
|
@ -3239,7 +3239,11 @@ osd.initialize = function(callback) {
|
||||||
y: 'center',
|
y: 'center',
|
||||||
},
|
},
|
||||||
outside: 'x',
|
outside: 'x',
|
||||||
}));
|
});
|
||||||
|
|
||||||
|
myModal.attach($(this));
|
||||||
|
|
||||||
|
OSD.data.tooltips.push(myModal);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue