Fixed problems with creation graphs, dont read preriod. Tiquet: #2672

This commit is contained in:
m-lopez-f 2015-12-22 12:51:39 +01:00
parent 8c117338ca
commit c80d43c028
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ function readFields() {
values['module'] = $("select[name=module]").val();
values['process_simple_value'] = $("select[name=process_value]").val();
values['background'] = $("#background_image").val();
values['period'] = $("#hidden-period").val();
values['period'] = undefined != $("#hidden-period").val() ? $("#hidden-period").val() : $("#period").val();
values['width'] = $("input[name=width]").val();
values['height'] = $("input[name=height]").val();
values['parent'] = $("select[name=parent]").val();