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
2b763580
Commit
2b763580
authored
Feb 27, 2019
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move header to swapPanel
parent
f506cb93
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
8 deletions
+9
-8
plugin-manager-component.js
src/app/components/plugin-manager-component.js
+0
-3
swap-panel-component.js
src/app/components/swap-panel-component.js
+9
-1
compilerContainer.js
src/app/tabs/compileTab/compilerContainer.js
+0
-3
test-tab.js
src/app/tabs/test-tab.js
+0
-1
No files found.
src/app/components/plugin-manager-component.js
View file @
2b763580
...
@@ -127,9 +127,6 @@ class PluginManagerComponent {
...
@@ -127,9 +127,6 @@ class PluginManagerComponent {
const
rootView
=
yo
`
const
rootView
=
yo
`
<div id='pluginManager'>
<div id='pluginManager'>
<header class="navbar navbar-dark bg-dark">
<h2 class="navbar-brand">Plugin Manager</h2>
</header>
<div class="form-group
${
css
.
pluginSearch
}
">
<div class="form-group
${
css
.
pluginSearch
}
">
<input onkeyup="
${
e
=>
this
.
filterPlugins
(
e
)}
" class="form-control" placeholder='Search'>
<input onkeyup="
${
e
=>
this
.
filterPlugins
(
e
)}
" class="form-control" placeholder='Search'>
</div>
</div>
...
...
src/app/components/swap-panel-component.js
View file @
2b763580
...
@@ -41,6 +41,8 @@ class SwapPanelComponent {
...
@@ -41,6 +41,8 @@ class SwapPanelComponent {
this
.
contents
[
this
.
currentNode
].
style
.
display
=
'none'
this
.
contents
[
this
.
currentNode
].
style
.
display
=
'none'
}
}
this
.
currentNode
=
moduleName
this
.
currentNode
=
moduleName
var
item
=
this
.
store
.
getOne
(
moduleName
)
this
.
header
.
innerHTML
=
item
.
profile
?
item
.
profile
.
displayName
:
' - '
return
return
}
}
}
}
...
@@ -63,7 +65,13 @@ class SwapPanelComponent {
...
@@ -63,7 +65,13 @@ class SwapPanelComponent {
<div id='plugins' class=
${
css
.
plugins
}
>
<div id='plugins' class=
${
css
.
plugins
}
>
</div>
</div>
`
`
return
this
.
view
this
.
header
=
yo
`<header class="navbar navbar-dark bg-dark"><h2 class="navbar-brand"></h2> </header>`
if
(
!
this
.
opt
.
displayHeader
)
this
.
header
.
style
.
display
=
'none'
return
yo
`<div>
${
this
.
header
}
${
this
.
view
}
</div>`
}
}
}
}
...
...
src/app/tabs/compileTab/compilerContainer.js
View file @
2b763580
...
@@ -131,9 +131,6 @@ class CompilerContainer {
...
@@ -131,9 +131,6 @@ class CompilerContainer {
this
.
_view
.
compileContainer
=
yo
`
this
.
_view
.
compileContainer
=
yo
`
<section>
<section>
<header class="navbar navbar-dark bg-dark">
<h2 class="navbar-brand">Solidity Compiler</h2>
</header>
<!-- Select Compiler Version -->
<!-- Select Compiler Version -->
<article>
<article>
<header class="navbar navbar-light bg-light input-group mb-3">
<header class="navbar navbar-light bg-light input-group mb-3">
...
...
src/app/tabs/test-tab.js
View file @
2b763580
...
@@ -195,7 +195,6 @@ module.exports = class TestTab {
...
@@ -195,7 +195,6 @@ module.exports = class TestTab {
var
el
=
yo
`
var
el
=
yo
`
<div class="
${
css
.
testTabView
}
card" id="testView">
<div class="
${
css
.
testTabView
}
card" id="testView">
<div class="
${
css
.
infoBox
}
">
<div class="
${
css
.
infoBox
}
">
<h2 class="
${
css
.
title
}
">Unit Testing</h2>
Test your smart contract by creating a foo_test.sol file (open ballot_test.sol to see the example).
Test your smart contract by creating a foo_test.sol file (open ballot_test.sol to see the example).
<br/>
<br/>
You will find more informations in the <a href="https://remix.readthedocs.io/en/latest/unittesting_tab.html">documentation</a>
You will find more informations in the <a href="https://remix.readthedocs.io/en/latest/unittesting_tab.html">documentation</a>
...
...
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