Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
idelvall committed Feb 9, 2017
1 parent 120fd76 commit fbc3262
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions dist/js/brutusin-json-forms.js
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ if (typeof brutusin === "undefined") {
appendChild(patdiv, addButton, s);
if (value) {
for (var p in value) {
if (s.properties.hasOwnProperty(p)) {
if (s.properties && s.properties.hasOwnProperty(p)) {
continue;
}
var r = RegExp(pattern);
Expand Down Expand Up @@ -803,7 +803,6 @@ if (typeof brutusin === "undefined") {
} else {
render(null, form, "$", null, null);
}
rendered = true;
if (dependencyMap.hasOwnProperty("$")) {
onDependencyChanged("$");
}
Expand Down
Loading

0 comments on commit fbc3262

Please sign in to comment.