Skip to content

Commit fb8fc84

Browse files
committed
build
1 parent f3cadc6 commit fb8fc84

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

dist/schema-form.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ angular.module('schemaForm').provider('sfBuilder', ['sfPathProvider', function(s
171171
}
172172
} else {
173173
// Another builder, i.e. array has overriden the modelValue
174-
console.log('overriding modelValue');
175174
modelValue = args.state.modelValue;
176175
}
177176

@@ -203,7 +202,6 @@ angular.module('schemaForm').provider('sfBuilder', ['sfPathProvider', function(s
203202
}
204203
},
205204
simpleTransclusion: function(args) {
206-
console.warn('doing simple transclusion', args);
207205
var children = args.build(args.form.items, args.path + '.items', args.state);
208206
args.fieldFrag.firstChild.appendChild(children);
209207
},
@@ -324,7 +322,6 @@ angular.module('schemaForm').provider('sfBuilder', ['sfPathProvider', function(s
324322
* Builds a form from a canonical form definition
325323
*/
326324
build: function(form, decorator, slots) {
327-
console.log('Buidling with form', form)
328325
return build(form, decorator, function(url) {
329326
return $templateCache.get(url);
330327
}, slots);
@@ -712,7 +709,7 @@ angular.module('schemaForm').provider('schemaFormDecorators',
712709
* @param {Object} templates, an object that maps "type" => "templateUrl"
713710
*/
714711
this.createDecorator = function(name, templates) {
715-
console.warn('schemaFormDecorators.createDecorator is DEPRECATED, use defineDecorator instead.');
712+
//console.warn('schemaFormDecorators.createDecorator is DEPRECATED, use defineDecorator instead.');
716713
decorators[name] = {'__name': name};
717714

718715
angular.forEach(templates, function(url, type) {

0 commit comments

Comments
 (0)