This repository was archived by the owner on Jun 10, 2019. It is now read-only.
File tree 3 files changed +6
-12
lines changed
3 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 25
25
"prop-types" : " ^15.5.8" ,
26
26
"query-string" : " ^4.3.4" ,
27
27
"raf" : " ^3.4.0" ,
28
+ "raven-js" : " ^3.25.2" ,
28
29
"rc-progress" : " ^2.2.2" ,
29
30
"react" : " ^16.0.0" ,
30
31
"react-dom" : " ^16.0.0" ,
Original file line number Diff line number Diff line change 34
34
< meta name ="twitter:creator " content ="@operation_code " />
35
35
36
36
< link rel ="stylesheet " type ="styles/css " href ="styles/css/styles.css ">
37
- < script defer src ="https://cdn.ravenjs.com/3.16.0 /raven.min.js " crossorigin ="anonymous "> </ script >
37
+ < script defer src ="https://cdn.ravenjs.com/3.25.2 /raven.min.js " crossorigin ="anonymous "> </ script >
38
38
< link rel ="stylesheet " href ="https://fonts.googleapis.com/css?family=Noto+Serif ">
39
39
< title > Operation Code</ title >
40
40
</ head >
41
41
42
42
< body >
43
43
< div id ="root "> </ div >
44
- < script >
45
- Raven . config ( 'https://[email protected] /147247' , {
46
- shouldSendCallback : function ( ) {
47
- return window . location . host === 'operationcode.org' ;
48
- }
49
- } ) . install ( ) ;
50
- </ script >
51
44
</ body >
52
45
53
46
</ html >
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import ReactDOM from 'react-dom' ;
3
+ import Raven from 'raven-js' ;
3
4
import '@fortawesome/fontawesome/styles.css' ;
4
5
import App from './App' ;
5
6
import './shared/styles/normalize.global.css' ;
6
7
import './shared/styles/react-select.global.css' ;
7
8
import './shared/styles/notifications.global.css' ;
8
9
import './index.css' ;
9
10
10
- ReactDOM . render (
11
- < App /> ,
12
- document . getElementById ( 'root' )
13
- ) ;
11
+ Raven . config ( 'https://[email protected] /222621' ) . install ( ) ;
12
+
13
+ ReactDOM . render ( < App /> , document . getElementById ( 'root' ) ) ;
You can’t perform that action at this time.
0 commit comments