File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
"use strict" ;
2
2
3
3
var React = require ( 'react' ) ;
4
- var Environment = require ( './environment' ) ;
5
4
var urllite = require ( 'urllite/lib/core' ) ;
5
+ var Environment = require ( './environment' ) ;
6
6
7
7
/**
8
8
* A container component which captures <a> clicks and, if there's a matching
@@ -25,7 +25,7 @@ var CaptureClicks = React.createClass({
25
25
// can't make the decision to do that synchronously.
26
26
window . location . href = url ;
27
27
}
28
- }
28
+ } ;
29
29
} ,
30
30
31
31
onClick : function ( e ) {
@@ -112,7 +112,8 @@ var CaptureClicks = React.createClass({
112
112
var props = {
113
113
onClick : this . onClick
114
114
} ;
115
- return this . transferPropsTo ( this . props . component ( props , this . props . children ) ) ;
115
+ return this . transferPropsTo (
116
+ this . props . component ( props , this . props . children ) ) ;
116
117
}
117
118
118
119
} ) ;
You can’t perform that action at this time.
0 commit comments