@@ -171,7 +171,6 @@ angular.module('schemaForm').provider('sfBuilder', ['sfPathProvider', function(s
171
171
}
172
172
} else {
173
173
// Another builder, i.e. array has overriden the modelValue
174
- console . log ( 'overriding modelValue' ) ;
175
174
modelValue = args . state . modelValue ;
176
175
}
177
176
@@ -203,7 +202,6 @@ angular.module('schemaForm').provider('sfBuilder', ['sfPathProvider', function(s
203
202
}
204
203
} ,
205
204
simpleTransclusion : function ( args ) {
206
- console . warn ( 'doing simple transclusion' , args ) ;
207
205
var children = args . build ( args . form . items , args . path + '.items' , args . state ) ;
208
206
args . fieldFrag . firstChild . appendChild ( children ) ;
209
207
} ,
@@ -324,7 +322,6 @@ angular.module('schemaForm').provider('sfBuilder', ['sfPathProvider', function(s
324
322
* Builds a form from a canonical form definition
325
323
*/
326
324
build : function ( form , decorator , slots ) {
327
- console . log ( 'Buidling with form' , form )
328
325
return build ( form , decorator , function ( url ) {
329
326
return $templateCache . get ( url ) ;
330
327
} , slots ) ;
@@ -712,7 +709,7 @@ angular.module('schemaForm').provider('schemaFormDecorators',
712
709
* @param {Object } templates, an object that maps "type" => "templateUrl"
713
710
*/
714
711
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.');
716
713
decorators [ name ] = { '__name' : name } ;
717
714
718
715
angular . forEach ( templates , function ( url , type ) {
0 commit comments