hovercard: better placement management

This commit is contained in:
rabuzarus 2016-05-06 17:32:07 +02:00
parent 047722dc37
commit 0ab7a210f9
1 changed files with 10 additions and 1 deletions

View File

@ -62,7 +62,16 @@ $(document).ready(function(){
if(data) {
targetElement.popover({
html: true,
placement: 'auto',
placement: function () {
// Calculate the placement of the the hovercard (if top or bottom)
// The placement depence on the distance between window top and the element
// which triggers the hover-card
var get_position = $(targetElement).offset().top - $(window).scrollTop();
if (get_position < 270 ){
return "bottom";
}
return "top";
},
trigger: 'manual',
template: '<div class="popover hovercard" data-card-created="' + timeNow + '"><div class="arrow"></div><div class="popover-content hovercard-content"></div></div>',
content: data