Skip to content

Instantly share code, notes, and snippets.

@chekit
Created October 21, 2016 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chekit/04b8a1036d432542ae8b3f38ce95fef5 to your computer and use it in GitHub Desktop.
Save chekit/04b8a1036d432542ae8b3f38ce95fef5 to your computer and use it in GitHub Desktop.
Unbind watcher in AngularJS
//$watch returns a deregistration function. Calling it would deregister the $watcher.
var listener = $scope.$watch("quartz", function () {});
// ...
listener(); // Would clear the watch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment