Fixed problems with period in visual console. Tiquet: #2672
(cherry picked from commit 3b5b7f5313
)
This commit is contained in:
parent
0abbdd46e9
commit
c58e6b2738
|
@ -273,7 +273,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();
|
||||
|
|
Loading…
Reference in New Issue