New maps in progress... (test context menus)

This commit is contained in:
Arturo Gonzalez 2016-03-08 17:09:40 +01:00
parent 39a9ef4c28
commit 73b16c177e
2 changed files with 14 additions and 1 deletions

View File

@ -157,6 +157,19 @@ if (is_ajax ()) {
$data_graph_id = (int)get_parameter('data_graph_id');
$node_id = get_parameter('node_id');
ob_start();
?>
<div id="tooltip_{data_graph_id}">
<div class="title_bar">
<span class="title">{title}</span>
</div>
<div class="body">
{body}
</div>
</div>
<?php
$details = ob_get_clean();
switch ($type) {
case ITEM_TYPE_AGENT_NETWORKMAP:
$details = str_replace(

View File

@ -539,7 +539,7 @@ MapController.prototype.nodeGetDetails = function(data_id, type, id_map, data_gr
type: "POST",
url: "ajax.php",
success: function (data) {
window.open(data);
console.log(data);
}
});
}