File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,23 +100,23 @@ class Router extends React.Component {
100
100
this . onWillPush ( route ) ;
101
101
} ) ;
102
102
aspect . after ( this . refs . navigator , 'push' , ( route ) => {
103
- // temporary hack to fix bug in aspect library
103
+ // temporary hack to fix bug in aspect library
104
104
this . onDidPush ( route || arguments [ 1 ] ) ;
105
105
} ) ;
106
106
107
107
aspect . before ( this . refs . navigator , 'resetTo' , ( route ) => {
108
108
this . onWillResetTo ( route ) ;
109
109
} ) ;
110
110
aspect . after ( this . refs . navigator , 'resetTo' , ( route ) => {
111
- // temporary hack to fix bug in aspect library
111
+ // temporary hack to fix bug in aspect library
112
112
this . onDidResetTo ( route || arguments [ 1 ] ) ;
113
113
} ) ;
114
114
115
115
aspect . before ( this . refs . navigator , 'replace' , ( route ) => {
116
116
this . onWillReplace ( route ) ;
117
117
} ) ;
118
118
aspect . after ( this . refs . navigator , 'replace' , ( route ) => {
119
- // temporary hack to fix bug in aspect library
119
+ // temporary hack to fix bug in aspect library
120
120
this . onDidReplace ( route || arguments [ 1 ] ) ;
121
121
} ) ;
122
122
You can’t perform that action at this time.
0 commit comments