mirror of
https://github.com/grafana/grafana.git
synced 2025-02-04 12:41:12 -06:00
36 lines
842 B
JavaScript
36 lines
842 B
JavaScript
define(['jquery'],
|
|
function ($) {
|
|
'use strict';
|
|
|
|
/**
|
|
* jQuery extensions
|
|
*/
|
|
var $win = $(window);
|
|
|
|
$.fn.place_tt = (function () {
|
|
var defaults = {
|
|
offset: 5,
|
|
};
|
|
|
|
return function (x, y, opts) {
|
|
opts = $.extend(true, {}, defaults, opts);
|
|
return this.each(function () {
|
|
var $tooltip = $(this), width, height;
|
|
|
|
$tooltip.addClass('grafana-tooltip');
|
|
|
|
$("#tooltip").remove();
|
|
$tooltip.appendTo(document.body);
|
|
|
|
width = $tooltip.outerWidth(true);
|
|
height = $tooltip.outerHeight(true);
|
|
|
|
$tooltip.css('left', x + opts.offset + width > $win.width() ? x - opts.offset - width : x + opts.offset);
|
|
$tooltip.css('top', y + opts.offset + height > $win.height() ? y - opts.offset - height : y + opts.offset);
|
|
});
|
|
};
|
|
})();
|
|
|
|
return $;
|
|
});
|