Skip to content

Commit

Permalink
Merge pull request #225 from YouWoTMA/master
Browse files Browse the repository at this point in the history
Fix Tracekit for firefox/xulrunner chrome code
  • Loading branch information
mattrobenolt committed Jul 8, 2014
2 parents 9b901a7 + d3134e9 commit 116e12a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/TraceKit/tracekit.js
Expand Up @@ -632,7 +632,7 @@ TraceKit.computeStackTrace = (function computeStackTraceWrapper() {
}

var chrome = /^\s*at (?:((?:\[object object\])?\S+(?: \[as \S+\])?) )?\(?((?:file|https?|chrome-extension):.*?):(\d+)(?::(\d+))?\)?\s*$/i,
gecko = /^\s*(\S*)(?:\((.*?)\))?@((?:file|https?).*?):(\d+)(?::(\d+))?\s*$/i,
gecko = /^\s*(\S*)(?:\((.*?)\))?@((?:file|https?|chrome).*?):(\d+)(?::(\d+))?\s*$/i,
lines = ex.stack.split('\n'),
stack = [],
parts,
Expand Down

0 comments on commit 116e12a

Please sign in to comment.