File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 33This is an experimental JavaScript client for the [ Sentry] [ 1 ] realtime event
44logging and aggregation platform.
55
6- The full and minified distribution files include code from another
7- open-source project:
8-
9- * parseUri from [ parseUri] [ 5 ] (included in minified distribution)
10-
116The stacktrace generation was inspired by the [ javascript-stacktrace] [ 4 ]
12- project, and includes heavily modified portions of that project's code.
7+ project, and includes heavily modified portions of that project's code. The
8+ full and minified distribution files include [ parseUri] [ 5 ] .
139
1410[ 1 ] : http://getsentry.com/
1511[ 4 ] : https://github.com/eriwen/javascript-stacktrace
Original file line number Diff line number Diff line change 44//
55// Requires:
66// * Either jQuery (>1.5) or Zepto.js.
7+ // * parseUri (included in the full and minified distribution files)
78
89( function ( ) {
910 // Save a reference to the global object (`window` in the browser, `global`
4041 if ( config . indexOf ( 'http' ) === 0 ) {
4142 // new-style DSN configuration
4243 config = Raven . parseDSN ( config ) ;
44+ } else {
45+ throw "Base64 encoded config is no longer supported - use DSN" ;
4346 }
4447 }
4548 $ . each ( config , function ( i , option ) {
You can’t perform that action at this time.
0 commit comments