Commit d8a334a3 authored by Julia Radzhabova's avatar Julia Radzhabova

[SSE mobile] Bug with loading functions (when no description for function in json file).

parent 2a0b6b6b
......@@ -135,8 +135,8 @@ define([
type: _name,
group: groupname,
caption: func.asc_getLocaleName(),
args: jsonDesc[_name].a || '',
descr: jsonDesc[_name].d || ''
args: (jsonDesc && jsonDesc[_name]) ? jsonDesc[_name].a : '',
descr: (jsonDesc && jsonDesc[_name]) ? jsonDesc[_name].d : ''
};
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment