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
92e29e4f
Commit
92e29e4f
authored
Dec 05, 2017
by
Rob Stupay
Committed by
yann300
Dec 11, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bg image working BUT cannot create an instance of a contract
parent
986588af
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
6 deletions
+35
-6
txLogger.js
src/app/execution/txLogger.js
+0
-2
terminal.js
src/app/panels/terminal.js
+35
-4
No files found.
src/app/execution/txLogger.js
View file @
92e29e4f
...
@@ -163,7 +163,6 @@ function renderKnownTransaction (self, data) {
...
@@ -163,7 +163,6 @@ function renderKnownTransaction (self, data) {
var
table
var
table
function
txDetails
()
{
function
txDetails
()
{
console
.
log
(
'txDetails hit'
)
if
(
table
&&
table
.
parentNode
)
{
if
(
table
&&
table
.
parentNode
)
{
tx
.
removeChild
(
table
)
tx
.
removeChild
(
table
)
}
else
{
}
else
{
...
@@ -216,7 +215,6 @@ function renderCall (self, data) {
...
@@ -216,7 +215,6 @@ function renderCall (self, data) {
var
table
var
table
function
txDetails
()
{
function
txDetails
()
{
console
.
log
(
'txDetails hit'
)
if
(
table
&&
table
.
parentNode
)
{
if
(
table
&&
table
.
parentNode
)
{
tx
.
removeChild
(
table
)
tx
.
removeChild
(
table
)
}
else
{
}
else
{
...
...
src/app/panels/terminal.js
View file @
92e29e4f
...
@@ -74,19 +74,46 @@ var css = csjs`
...
@@ -74,19 +74,46 @@ var css = csjs`
overflow-y : auto;
overflow-y : auto;
font-family : monospace;
font-family : monospace;
}
}
.terminal::after {
.inner_terminal {
content : "";
display : flex;
flex-direction : column;
height : 100%;
padding-left : 5px;
padding-right : 5px;
padding-bottom : 3px;
overflow-y : auto;
font-family : monospace;
background-image : url(assets/img/remix_logo_white_512x512.svg);
background-image : url(assets/img/remix_logo_white_512x512.svg);
opacity : .1;
opacity :
0
.1;
top : 15%;
top : 15%;
left : 33%;
left : 33%;
bottom : 0;
bottom : 0;
right : 0;
right : 0;
position : absolute;
position : absolute;
z-index :
1;
// z-index : -
1;
background-repeat : no-repeat;
background-repeat : no-repeat;
background-size : 45%;
background-size : 45%;
}
}
.terminal_content {
position: relative;
position: relative;
display: flex;
flex-direction: column;
height: 100%;
}
.inner_terminal::after {
// content : "";
// background-image : url(assets/img/remix_logo_white_512x512.svg);
// opacity : 0.1;
// top : 15%;
// left : 33%;
// bottom : 0;
// right : 0;
// position : absolute;
// // z-index : -1;
// background-repeat : no-repeat;
// background-size : 45%;
}
.journal {
.journal {
margin-top : auto;
margin-top : auto;
font-family : monospace;
font-family : monospace;
...
@@ -278,9 +305,13 @@ class Terminal {
...
@@ -278,9 +305,13 @@ class Terminal {
self
.
_view
.
term
=
yo
`
self
.
_view
.
term
=
yo
`
<div class=
${
css
.
terminal
}
onscroll=
${
throttle
(
reattach
,
10
)}
onclick=
${
focusinput
}
>
<div class=
${
css
.
terminal
}
onscroll=
${
throttle
(
reattach
,
10
)}
onclick=
${
focusinput
}
>
<div class=
${
css
.
inner_terminal
}
>
</div>
<div class=
${
css
.
terminal_content
}
>
${
self
.
_view
.
journal
}
${
self
.
_view
.
journal
}
${
self
.
_view
.
cli
}
${
self
.
_view
.
cli
}
</div>
</div>
</div>
`
`
self
.
_view
.
el
=
yo
`
self
.
_view
.
el
=
yo
`
<div class=
${
css
.
panel
}
>
<div class=
${
css
.
panel
}
>
...
...
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