Skip to content

Instantly share code, notes, and snippets.

@chris-held
Created January 6, 2016 21:46
Show Gist options
  • Select an option

  • Save chris-held/1693eb2fd871703df1a3 to your computer and use it in GitHub Desktop.

Select an option

Save chris-held/1693eb2fd871703df1a3 to your computer and use it in GitHub Desktop.
$scope.$watch example
$scope.$watch('message', function(newValue, oldValue){
if (newValue !== oldValue) {
//do some stuff
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment