Skip to content

Instantly share code, notes, and snippets.

@TheLarkInn
Created January 28, 2015 14:02
Show Gist options
  • Save TheLarkInn/e7920916e3787d0de0f2 to your computer and use it in GitHub Desktop.
Save TheLarkInn/e7920916e3787d0de0f2 to your computer and use it in GitHub Desktop.
Example of Using $scope.$watch to watch the evaluative value of a function
$scope.$watch(
function () { return obj.hasOwnProperty("choice") },
function (newLocation, oldLocation) {
//Do things here.
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment