$watch returns a deregistration function. Calling it would deregister the $watcher.
var listener = $scope.$watch("quartz", function () {});
// ...
listener(); // Would clear the watch
$watch returns a deregistration function. Calling it would deregister the $watcher.
var listener = $scope.$watch("quartz", function () {});
// ...
listener(); // Would clear the watch