Skip to content

Commit

Permalink
Update deps and fix unit test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Jun 26, 2017
1 parent 9f52a6d commit 1515aee
Show file tree
Hide file tree
Showing 17 changed files with 5,926 additions and 5,231 deletions.
519 changes: 258 additions & 261 deletions dist/exceptionless.d.ts

Large diffs are not rendered by default.

1,574 changes: 786 additions & 788 deletions dist/exceptionless.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/exceptionless.js.map

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions dist/exceptionless.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/exceptionless.min.js.map

Large diffs are not rendered by default.

1,715 changes: 843 additions & 872 deletions dist/exceptionless.node.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/exceptionless.node.js.map

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions dist/integrations/angular.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var angular = require("angular");
angular.module('exceptionless', [])
.constant('$ExceptionlessClient', exceptionless.ExceptionlessClient.default)
.factory('exceptionlessHttpInterceptor', ['$q', '$ExceptionlessClient', function ($q, $ExceptionlessClient) {
Expand Down Expand Up @@ -33,12 +30,16 @@ angular.module('exceptionless', [])
function decorateRegularCall(property, logLevel) {
var previousFn = $delegate[property];
return $delegate[property] = function () {
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments[_i];
}
if (angular.mock) {
$delegate[property].logs = [];
}
previousFn.apply(null, arguments);
if (arguments[0] && arguments[0].length > 0) {
$ExceptionlessClient.submitLog(null, arguments[0], logLevel);
previousFn.apply(null, args);
if (args[0] && args[0].length > 0) {
$ExceptionlessClient.submitLog(null, args[0], logLevel);
}
};
}
Expand Down
5 changes: 2 additions & 3 deletions dist/submitSync.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/submitSync.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 1515aee

Please sign in to comment.