I have a Complex scope variable, something like the following.
$scope.ComplexVariable={
PrimaryObjOne:{
SecondaryOne:'',
SecondaryTwo:''
},
PrimaryObjTwo:{
SecondaryOne:'',
SecondaryTwo:''
}
}
Is there any clean way to check if any of the properties(at the secondary level in my example) associated with this object were modified. Adding a $watch against each property would work, but I was wondering if there was a cleaner way to do this.