Skip to content

Instantly share code, notes, and snippets.

@MathRivest
Last active August 29, 2015 14:10
Show Gist options
  • Save MathRivest/b59811e87bbe3c913c72 to your computer and use it in GitHub Desktop.
Save MathRivest/b59811e87bbe3c913c72 to your computer and use it in GitHub Desktop.
Event debugging for angular.js
app.config(function ($provide) {
$provide.decorator('$rootScope', function ($delegate) {
var backup = $delegate.$emit;
$delegate.$emit = function () {
console.log.apply(console, arguments);
backup.apply(this, arguments)
}
return $delegate;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment