first commit

This commit is contained in:
2024-11-07 18:38:48 +05:00
commit 7ab166fd23
102 changed files with 10284 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
$(document).ready(function () {
$('.alert-placeholder').mouseenter(function(){
var popOverSettings = {
placement: 'bottom',
content: $(this).data('content'),
trigger: 'hover',
container: this,
offset: '0'
}
$(this).popover(popOverSettings);
$(this).popover('show');
$('.popover').addClass('alert-popover');
});
$('.alert-placeholder').mouseleave(function(){
$('.alert-popover').remove()
});
});