Skip to content

Instantly share code, notes, and snippets.

@stevenh77
Created November 22, 2014 11:52
Show Gist options
  • Select an option

  • Save stevenh77/4a88194a21dbfae5806f to your computer and use it in GitHub Desktop.

Select an option

Save stevenh77/4a88194a21dbfae5806f to your computer and use it in GitHub Desktop.
// publishing up the scope chain
$scope.$emit('eventWithString', 'message');
// publishing down the scope chain
$scope.$broadcast('eventWithObject', {
text: 'message'
});
// event subscription
$scope.$on('eventWithObject', function (event, data) {
console.log(data.text);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment