Skip to content

Commit

Permalink
Removed extra params
Browse files Browse the repository at this point in the history
  • Loading branch information
juriejan authored and Mathieu Ghaleb committed Sep 9, 2015
1 parent 510d6ba commit 57ced55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/TraceKit/tracekit.js
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ TraceKit.computeStackTrace = (function computeStackTraceWrapper() {
} else if ((parts = chrome.exec(lines[i]))) {
element = {
'url': parts[2],
'func': (parts[1] || UNKNOWN_FUNCTION),
'func': parts[1] || UNKNOWN_FUNCTION,
'line': +parts[3],
'column': parts[4] ? +parts[4] : null
};
Expand Down

0 comments on commit 57ced55

Please sign in to comment.