minor fix radial redirection

Former-commit-id: 0676ff2eb51a7ea281eb1410b1e5c4082c39d074
This commit is contained in:
fbsanchez 2019-03-13 12:55:24 +01:00
parent 95c61024f7
commit f5b0e6b1a4
2 changed files with 5 additions and 5 deletions

View File

@ -504,9 +504,9 @@ function create_loading_tooltip(d, x, y) {
}
function show_tooltip(d) {
x = d3.event.clientX + 10;
y = d3.event.clientY + 10;
x = d3.event.clientX 100;
y = d3.event.clientY 100;
if (d.default_tooltip) {
create_loading_tooltip(d, x, y);

View File

@ -357,12 +357,12 @@ if ($new_networkmap || $save_networkmap) {
if ($result !== false) {
$tab = 'view';
if ($values['generation_method'] == 6) {
if ($values['generation_method'] == LAYOUT_RADIAL_DYNAMIC) {
$tab = 'r_dinamic';
define('_activeTab_', 'radial_dynamic');
$url = 'index.php?sec=network&sec2=operation/agentes/networkmap.dinamic&activeTab=radial_dynamic';
header(
'Location'.ui_get_full_url(
'Location: '.ui_get_full_url(
$url.'&id_networkmap='.$id
)
);