Skip to content

Instantly share code, notes, and snippets.

@seven-cd
Created March 5, 2017 13:35
Show Gist options
  • Save seven-cd/c2e8bb4ac9e675567095e15cfb85f754 to your computer and use it in GitHub Desktop.
Save seven-cd/c2e8bb4ac9e675567095e15cfb85f754 to your computer and use it in GitHub Desktop.
AngularJs - One Time Watcher
var configWatcher = $scope.$watch(function() {
return config.game;
}, function(current) {
if (current) {
vm.ready = true;
configWatcher();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment