mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-25 19:09:08 +02:00
fixed minor error view modules type string ticket 4165
This commit is contained in:
parent
4298a87a76
commit
709051d281
@ -958,8 +958,8 @@ if ($list_modules) {
|
|||||||
"refresh=" . SECONDS_10MINUTES . "&" .
|
"refresh=" . SECONDS_10MINUTES . "&" .
|
||||||
"draw_events=$draw_events', 'day_".$win_handle."')";
|
"draw_events=$draw_events', 'day_".$win_handle."')";
|
||||||
|
|
||||||
if(!is_snapshot_data($module['datos'])){
|
if(!is_snapshot_data($module['datos'])){
|
||||||
$data[8] .= '<a href="javascript:'.$link.'">' . html_print_image("images/chart_curve.png", true, array("border" => '0', "alt" => "")) . '</a> ';
|
$data[8] .= '<a href="javascript:'.$link.'">' . html_print_image("images/chart_curve.png", true, array("border" => '0', "alt" => "")) . '</a> ';
|
||||||
}
|
}
|
||||||
$server_name = '';
|
$server_name = '';
|
||||||
$data[8] .= "<a href='javascript: " .
|
$data[8] .= "<a href='javascript: " .
|
||||||
@ -1004,7 +1004,14 @@ if(!is_snapshot_data($module['datos'])){
|
|||||||
.click (function () {
|
.click (function () {
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
function toggle_full_value(id) {
|
||||||
|
text = $('#hidden_value_module_' + id).html();
|
||||||
|
old_text = $("#value_module_text_" + id).html();
|
||||||
|
|
||||||
|
$("#hidden_value_module_" + id).html(old_text);
|
||||||
|
|
||||||
|
$("#value_module_text_" + id).html(text);
|
||||||
|
}
|
||||||
/* ]]> */
|
/* ]]> */
|
||||||
</script>
|
</script>
|
||||||
<?php
|
<?php
|
||||||
|
Loading…
x
Reference in New Issue
Block a user