Skip to content

Instantly share code, notes, and snippets.

@hereswhatidid
Created March 11, 2015 14:40
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 hereswhatidid/de313034761800b7de24 to your computer and use it in GitHub Desktop.
Save hereswhatidid/de313034761800b7de24 to your computer and use it in GitHub Desktop.
Directive to remove watchers from an element within AngularJS
angular
.module( 'yourAppName' )
.directive( 'bindOnce', BindOnce );
function BindOnce() {
return {
scope: true,
link: function( $scope ) {
setTimeout(function() {
$scope.$destroy();
}, 0);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment