Commit c549878f authored by Boris Kocherov's avatar Boris Kocherov

fix render without option

parent 9ea5b810
...@@ -864,6 +864,9 @@ ...@@ -864,6 +864,9 @@
}) })
.declareMethod('render', function (options) { .declareMethod('render', function (options) {
if (!options) {
options = {};
}
var z = { var z = {
saveOrigValue: options.saveOrigValue, saveOrigValue: options.saveOrigValue,
editable: options.editable === undefined ? true : options.editable editable: options.editable === undefined ? true : options.editable
......
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