@@ -321,7 +321,7 @@ describe('Binding attribute syntax', {
321
321
ko . bindingHandlers . bindChildrenWithCustomContext = {
322
322
init : function ( element , valueAccessor , allBindingsAccessor , viewModel , bindingContext ) {
323
323
var innerContext = bindingContext . createChildContext ( { myCustomData : 123 } ) ;
324
- ko . applyBindingsToDescendants ( innerContext , element , true ) ;
324
+ ko . applyBindingsToDescendants ( innerContext , element ) ;
325
325
return { 'controlsDescendantBindings' : true } ;
326
326
}
327
327
} ;
@@ -338,7 +338,7 @@ describe('Binding attribute syntax', {
338
338
ko . bindingHandlers . bindChildrenWithCustomContext = {
339
339
init : function ( element , valueAccessor , allBindingsAccessor , viewModel , bindingContext ) {
340
340
var innerContext = bindingContext . createChildContext ( { myCustomData : 123 } ) ;
341
- ko . applyBindingsToDescendants ( innerContext , element , true ) ;
341
+ ko . applyBindingsToDescendants ( innerContext , element ) ;
342
342
return { 'controlsDescendantBindings' : true } ;
343
343
}
344
344
} ;
@@ -355,7 +355,7 @@ describe('Binding attribute syntax', {
355
355
init : function ( element , valueAccessor , allBindingsAccessor , viewModel , bindingContext ) {
356
356
var innerContext = bindingContext . createChildContext ( { myCustomData : 123 } ) ;
357
357
innerContext . customValue = 'xyz' ;
358
- ko . applyBindingsToDescendants ( innerContext , element , true ) ;
358
+ ko . applyBindingsToDescendants ( innerContext , element ) ;
359
359
return { 'controlsDescendantBindings' : true } ;
360
360
}
361
361
} ;
0 commit comments