give right panel default width of 350px
This commit is contained in:
parent
0676c1b8ad
commit
fd5ad56886
1 changed files with 5 additions and 2 deletions
|
@ -41,10 +41,13 @@ export default class MainSplit extends React.Component {
|
||||||
{onResized: this._onResized},
|
{onResized: this._onResized},
|
||||||
);
|
);
|
||||||
resizer.setClassNames(classNames);
|
resizer.setClassNames(classNames);
|
||||||
const rhsSize = window.localStorage.getItem("mx_rhs_size");
|
let rhsSize = window.localStorage.getItem("mx_rhs_size");
|
||||||
if (rhsSize !== null) {
|
if (rhsSize !== null) {
|
||||||
resizer.forHandleAt(0).resize(parseInt(rhsSize, 10));
|
rhsSize = parseInt(rhsSize, 10);
|
||||||
|
} else {
|
||||||
|
rhsSize = 350;
|
||||||
}
|
}
|
||||||
|
resizer.forHandleAt(0).resize(rhsSize);
|
||||||
|
|
||||||
resizer.attach();
|
resizer.attach();
|
||||||
this.resizer = resizer;
|
this.resizer = resizer;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue