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
913753f7
Commit
913753f7
authored
Mar 01, 2021
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
activate home in a single call
parent
dd293733
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
app.js
apps/remix-ide/src/app.js
+2
-1
fileManager.js
apps/remix-ide/src/app/files/fileManager.js
+4
-0
No files found.
apps/remix-ide/src/app.js
View file @
913753f7
...
...
@@ -444,7 +444,8 @@ Please make a backup of your contracts and start using http://remix.ethereum.org
await
appManager
.
activatePlugin
([
'contentImport'
,
'theme'
,
'editor'
,
'fileManager'
,
'compilerMetadata'
,
'compilerArtefacts'
,
'network'
,
'web3Provider'
,
'offsetToLineColumnConverter'
])
await
appManager
.
activatePlugin
([
'mainPanel'
,
'menuicons'
])
await
appManager
.
activatePlugin
([
'sidePanel'
])
// activating host plugin separately
await
appManager
.
activatePlugin
([
'home'
,
'hiddenPanel'
,
'pluginManager'
,
'fileExplorers'
,
'settings'
,
'contextualListener'
,
'terminal'
,
'fetchAndCompile'
])
await
appManager
.
activatePlugin
([
'home'
])
await
appManager
.
activatePlugin
([
'hiddenPanel'
,
'pluginManager'
,
'fileExplorers'
,
'settings'
,
'contextualListener'
,
'terminal'
,
'fetchAndCompile'
])
const
queryParams
=
new
QueryParams
()
const
params
=
queryParams
.
get
()
...
...
apps/remix-ide/src/app/files/fileManager.js
View file @
913753f7
...
...
@@ -49,6 +49,10 @@ class FileManager extends Plugin {
this
.
init
()
}
getOpenedFiles
()
{
return
this
.
openedFiles
}
setMode
(
mode
)
{
this
.
mode
=
mode
}
...
...
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