stack trace not parsed correctly in Firefox
Opened this issue · 0 comments
RafalSkorka commented
Hi, I have a stack trace like this in Firefox:
myFunction@http://localhost:3000/main.js:59705:37
fn@http://localhost:3000/vendor.js line 63291 > Function:4:271
expensiveCheckFn@http://localhost:3000/vendor.js:64486:20
callback@http://localhost:3000/vendor.js:74883:19
$eval@http://localhost:3000/vendor.js:66253:30
$apply@http://localhost:3000/vendor.js:66357:27
ngEventHandler/<@http://localhost:3000/vendor.js:74891:23
...
As you can see one of the Angular function is shown as line 63291 > Function:4:271
. This is then not parsed correctly and results in a request to http://localhost:3000/vendor.js line 63291 > Function
instead of http://localhost:3000/vendor.js
.
Could you fix this?