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
35830a2c
Commit
35830a2c
authored
Jun 08, 2021
by
aniket-engg
Committed by
Aniket
Jul 20, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
register with engine
parent
8253eb60
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
app.js
apps/remix-ide/src/app.js
+2
-1
file-panel.js
apps/remix-ide/src/app/panels/file-panel.js
+2
-0
No files found.
apps/remix-ide/src/app.js
View file @
35830a2c
...
...
@@ -448,7 +448,8 @@ Please make a backup of your contracts and start using http://remix.ethereum.org
test
,
filePanel
.
remixdHandle
,
filePanel
.
gitHandle
,
filePanel
.
hardhatHandle
filePanel
.
hardhatHandle
,
filePanel
.
slitherHandle
])
if
(
isElectron
())
{
...
...
apps/remix-ide/src/app/panels/file-panel.js
View file @
35830a2c
...
...
@@ -9,6 +9,7 @@ import { checkSpecialChars, checkSlash } from '../../lib/helper'
const
{
RemixdHandle
}
=
require
(
'../files/remixd-handle.js'
)
const
{
GitHandle
}
=
require
(
'../files/git-handle.js'
)
const
{
HardhatHandle
}
=
require
(
'../files/hardhat-handle.js'
)
const
{
SlitherHandle
}
=
require
(
'../files/slither-handle.js'
)
const
globalRegistry
=
require
(
'../../global/registry'
)
const
examples
=
require
(
'../editor/examples'
)
const
GistHandler
=
require
(
'../../lib/gist-handler'
)
...
...
@@ -59,6 +60,7 @@ module.exports = class Filepanel extends ViewPlugin {
this
.
remixdHandle
=
new
RemixdHandle
(
this
.
_deps
.
fileProviders
.
localhost
,
appManager
)
this
.
gitHandle
=
new
GitHandle
()
this
.
hardhatHandle
=
new
HardhatHandle
()
this
.
slitherHandle
=
new
SlitherHandle
()
this
.
registeredMenuItems
=
[]
this
.
removedMenuItems
=
[]
this
.
request
=
{}
...
...
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