Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
31126b45
Commit
31126b45
authored
May 27, 2020
by
yann300
Committed by
ioedeveloper
Jul 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
collapse terminal and side panel
parent
55001c80
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
app.js
apps/remix-ide/src/app.js
+4
-1
main-view.js
apps/remix-ide/src/app/panels/main-view.js
+10
-1
framingService.js
apps/remix-ide/src/framingService.js
+5
-0
No files found.
apps/remix-ide/src/app.js
View file @
31126b45
...
...
@@ -412,7 +412,8 @@ Please make a backup of your contracts and start using http://remix.ethereum.org
// get the file from gist
const
gistHandler
=
new
GistHandler
()
const
queryParams
=
new
QueryParams
()
const
loadedFromGist
=
gistHandler
.
loadFromGist
(
queryParams
.
get
(),
fileManager
)
const
params
=
queryParams
.
get
()
const
loadedFromGist
=
gistHandler
.
loadFromGist
(
params
,
fileManager
)
if
(
!
loadedFromGist
)
{
// insert example contracts if there are no files to show
self
.
_components
.
filesProviders
[
'browser'
].
resolveDirectory
(
'/'
,
(
error
,
filesList
)
=>
{
...
...
@@ -428,4 +429,6 @@ Please make a backup of your contracts and start using http://remix.ethereum.org
if
(
isElectron
())
{
appManager
.
activatePlugin
(
'remixd'
)
}
if
(
params
.
embed
)
framingService
.
embed
()
}
apps/remix-ide/src/app/panels/main-view.js
View file @
31126b45
...
...
@@ -80,7 +80,7 @@ export class MainView {
self
.
data
=
{
_layout
:
{
top
:
{
offset
:
self
.
_
deps
.
config
.
get
(
'terminal-top-offset'
)
||
150
,
offset
:
self
.
_
terminalTopOffset
()
,
show
:
true
}
}
...
...
@@ -97,6 +97,9 @@ export class MainView {
})
}
}
_terminalTopOffset
()
{
return
this
.
_deps
.
config
.
get
(
'terminal-top-offset'
)
||
150
}
_adjustLayout
(
direction
,
delta
)
{
var
limitUp
=
0
var
limitDown
=
32
...
...
@@ -126,6 +129,12 @@ export class MainView {
self
.
_components
.
terminal
.
scroll2bottom
()
}
}
minimizeTerminal
()
{
this
.
_adjustLayout
(
'top'
)
}
showTerminal
(
offset
)
{
this
.
_adjustLayout
(
'top'
,
offset
||
this
.
_terminalTopOffset
())
}
getTerminal
()
{
return
this
.
_components
.
terminal
}
...
...
apps/remix-ide/src/framingService.js
View file @
31126b45
...
...
@@ -34,4 +34,9 @@ export class FramingService {
}
})
}
embed
()
{
this
.
mainView
.
minimizeTerminal
()
this
.
resizeFeature
.
hidePanel
()
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment