I\'m interested to find out why i always have to do this
$scope.$watch( function() { return $scope.someData; }, function( value ) { console.log( value
This works:
$scope.$watch("someData", function( value ) { console.log( value ); });