Joe Grund
Member since Oct 16, 2013
- Profile: /members/11330-joe-grund.htm
- Comments: 1
Recent Blog Comments By Joe Grund
-
Logging Client-Side Errors With AngularJS And Stacktrace.js
Posted on Oct 16, 2013 at 9:58 AM
If you want to keep the default logging of $exceptionHandler while extending it with custom functionality, you can use a decorator: angular.module('myApp').config(['$provide', function ($provide) { $provide.decorator('$exceptionHandler', ['$delegate', function ($delegate) { return function(ex... read more »