I'm writing an app with AngularJS 1.5.3
I have a parent component with some data in it that needs to be updated in the child component. Right now the data is not updating in the parent component even though the input boxes on the child look like they are updating.
Here is my fiddle: https://jsfiddle.net/aubz88/ab85L19c/
Here is some sample code:
var grandChildComponent = {
bindings: {
min: '<',
max: '<'
},
template: `
<div>
Grand Child component
<input ng-model="$ctrl.min" />
<input ng-model="$ctrl.max" />
</div>
`
};