apostrophe-schema-widgets
Advanced tools
Comparing version 0.5.13 to 0.5.14
{ | ||
"name": "apostrophe-schema-widgets", | ||
"version": "0.5.13", | ||
"version": "0.5.14", | ||
"description": "An easy form widget builder for the Apostrophe content management system", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -68,3 +68,6 @@ // @class Editor for all schema widgets | ||
// to get a nice rendering of it | ||
return self.debrief(function() { | ||
return self.debrief(function(err) { | ||
if (err) { | ||
return callback && callback(err); | ||
} | ||
return $.jsonCall( | ||
@@ -105,3 +108,3 @@ '/apos/render-widget', | ||
aposSchemas.scrollToError(self.$el); | ||
return; | ||
return callback('error'); | ||
} | ||
@@ -108,0 +111,0 @@ self.exists = true; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13893
170