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 {
100100 this . onWillPush ( route ) ;
101101 } ) ;
102102 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
104104 this . onDidPush ( route || arguments [ 1 ] ) ;
105105 } ) ;
106106
107107 aspect . before ( this . refs . navigator , 'resetTo' , ( route ) => {
108108 this . onWillResetTo ( route ) ;
109109 } ) ;
110110 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
112112 this . onDidResetTo ( route || arguments [ 1 ] ) ;
113113 } ) ;
114114
115115 aspect . before ( this . refs . navigator , 'replace' , ( route ) => {
116116 this . onWillReplace ( route ) ;
117117 } ) ;
118118 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
120120 this . onDidReplace ( route || arguments [ 1 ] ) ;
121121 } ) ;
122122
You can’t perform that action at this time.
0 commit comments