mirror of https://github.com/docker/docs.git
Go back
This commit is contained in:
parent
89cec26648
commit
0d52985606
|
@ -11,7 +11,7 @@ class AccountServerActions {
|
||||||
|
|
||||||
loggedin ({username, verified}) {
|
loggedin ({username, verified}) {
|
||||||
console.log(username, verified);
|
console.log(username, verified);
|
||||||
router.get().transitionTo('search');
|
router.get().goBack();
|
||||||
this.dispatch({username, verified});
|
this.dispatch({username, verified});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
handleClose: function () {
|
handleClose: function () {
|
||||||
this.transitionTo('search');
|
this.goBack();
|
||||||
metrics.track('Closed Signup');
|
metrics.track('Closed Signup');
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -230,7 +230,7 @@
|
||||||
|
|
||||||
.sidebar-buttons {
|
.sidebar-buttons {
|
||||||
border-top: 1px solid #F0F4F8;
|
border-top: 1px solid #F0F4F8;
|
||||||
min-height: 32px;
|
min-height: 36px;
|
||||||
flex: 0 auto;
|
flex: 0 auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
Loading…
Reference in New Issue