-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a config to determine whether the graph page is displayed by defa…
…ult and a config to set the ratio between the links page and the graph page
- Loading branch information
Showing
3 changed files
with
25 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
{ | ||
"showLinksPageAutomatically": true, | ||
"showGraphPageAutomatically": true, | ||
"splitRatio": "2:1", | ||
"splitRatioBetweenLinksPageAndGraphPage": "1:1", | ||
"location": "right" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
### Config | ||
- `showLinksPageAutomatically` [boolean (true | false)]:<br/> | ||
Defines if the link page should show up automatically as you enter the Editor (default: true)<br/><br/> | ||
- `splitRatio` [int:int]:<br/> | ||
Defines the default split ratio of the editor view and links page (default: 2:1)<br/> | ||
<br/> | ||
- `location` [string (left | right)]:<br/> | ||
Defines where to render the links page (default: right) | ||
<br/> | ||
|
||
`showLinksPageAutomatically` `[boolean (true | false)]`: | ||
|
||
- Defines if the link page should show up automatically as you enter the Editor (default: `true`) | ||
|
||
`showGraphPageAutomatically` `[boolean (true | false)]`: | ||
|
||
- Defines if the graph page should show up automatically as you enter the Editor (default: `true`) | ||
|
||
`splitRatio` `[string (int:int)]`: | ||
|
||
- Defines the default split ratio of the editor view and links page (default: `"2:1"`) | ||
|
||
`splitRatioBetweenLinksPageAndGraphPage` `[string (int:int)]`: | ||
|
||
- Defines the default split ratio of the links page and graph page (default: `"1:1"`) | ||
|
||
`location` `[string (left | right)]`: | ||
|
||
- Defines which side of the editor to display (default: `"right"`) |