mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 23:30:10 +00:00
11 lines
172 B
JavaScript
Executable File
11 lines
172 B
JavaScript
Executable File
|
|
$(document).ready(function() {
|
|
setTimeout(()=>{
|
|
|
|
$('div.bar').tipsy({
|
|
gravity: 'se',
|
|
html: true,
|
|
offset: 1
|
|
});
|
|
},1000);
|
|
}); |