You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
520 B
19 lines
520 B
2 months ago
|
$(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()
|
||
|
});
|
||
|
|
||
|
});
|