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
7a90aee4
Commit
7a90aee4
authored
May 23, 2016
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
styling
parent
2846b482
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
12 deletions
+15
-12
basicPanel.js
src/basicPanel.js
+1
-1
basicStyles.js
src/basicStyles.js
+4
-3
debugger.js
src/debugger.js
+1
-1
memoryPanel.js
src/memoryPanel.js
+4
-3
sticker.js
src/sticker.js
+2
-2
storagePanel.js
src/storagePanel.js
+3
-2
No files found.
src/basicPanel.js
View file @
7a90aee4
...
...
@@ -38,7 +38,7 @@ module.exports = React.createClass({
ret
.
push
(
<
tr
key
=
{
key
}
>
<
td
>
<
pre
>
{
this
.
props
.
data
[
key
]}
<
/pre
>
<
pre
style
=
{
style
.
font
}
>
{
this
.
props
.
data
[
key
]}
<
/pre
>
<
/td
>
<
/tr>
)
}
...
...
src/basicStyles.js
View file @
7a90aee4
'use strict'
module
.
exports
=
{
wrapper
:
{
font
:
{
'fontFamily'
:
'arial,sans-serif'
},
container
:
{
...
...
@@ -11,7 +11,8 @@ module.exports = {
'fontStyle'
:
'italic'
},
instructionsList
:
{
'width'
:
'320px'
'width'
:
'320px'
,
'height'
:
'300px'
},
transactionInfo
:
{
'marginTop'
:
'5px'
...
...
@@ -22,7 +23,7 @@ module.exports = {
'width'
:
'600px'
},
tableContainer
:
{
'height'
:
'
15
0px'
,
'height'
:
'
30
0px'
,
'overflowY'
:
'auto'
},
table
:
{
...
...
src/debugger.js
View file @
7a90aee4
...
...
@@ -37,7 +37,7 @@ module.exports = React.createClass({
render
:
function
()
{
return
(
<
div
style
=
{
style
.
wrapper
}
>
<
div
style
=
{
style
.
font
}
>
<
h1
style
=
{
style
.
container
}
>
Eth
Debugger
<
/h1
>
<
TxBrowser
onNewTxRequested
=
{
this
.
startDebugging
}
/
>
<
StepManager
ref
=
'stepManager'
onStepChanged
=
{
this
.
stepChanged
}
/
>
...
...
src/memoryPanel.js
View file @
7a90aee4
'use strict'
var
React
=
require
(
'react'
)
var
BasicPanel
=
require
(
'./basicPanel'
)
var
style
=
require
(
'./basicStyles'
)
module
.
exports
=
React
.
createClass
({
contextTypes
:
{
...
...
@@ -50,13 +51,13 @@ module.exports = React.createClass({
ret
.
push
(
<
tr
key
=
{
key
}
>
<
td
>
<
pre
>
{
memSlot
.
address
}
<
/pre
>
<
pre
style
=
{
style
.
font
}
>
{
memSlot
.
address
}
<
/pre
>
<
/td
>
<
td
>
<
pre
>
{
memSlot
.
content
.
raw
}
<
/pre
>
<
pre
style
=
{
style
.
font
}
>
{
memSlot
.
content
.
raw
}
<
/pre
>
<
/td
>
<
td
>
<
pre
>
{
memSlot
.
content
.
ascii
}
<
/pre
>
<
pre
style
=
{
style
.
font
}
>
{
memSlot
.
content
.
ascii
}
<
/pre
>
<
/td
>
<
/tr>
)
}
...
...
src/sticker.js
View file @
7a90aee4
...
...
@@ -55,7 +55,7 @@ module.exports = React.createClass({
remaining
gas
<
/td
>
<
td
>
{
this
.
state
.
remain
g
as
}
{
this
.
state
.
remain
ingG
as
}
<
/td
>
<
/tr
>
<
/tbody
>
...
...
@@ -119,7 +119,7 @@ module.exports = React.createClass({
console
.
log
(
error
)
}
else
{
self
.
setState
({
remaininGas
:
remaingas
remainin
g
Gas
:
remaingas
})
}
})
...
...
src/storagePanel.js
View file @
7a90aee4
'use strict'
var
React
=
require
(
'react'
)
var
BasicPanel
=
require
(
'./basicPanel'
)
var
style
=
require
(
'./basicStyles'
)
module
.
exports
=
React
.
createClass
({
contextTypes
:
{
...
...
@@ -49,10 +50,10 @@ module.exports = React.createClass({
ret
.
push
(
<
tr
key
=
{
key
}
>
<
td
>
<
pre
>
{
key
}
<
/pre
>
<
pre
style
=
{
style
.
font
}
>
{
key
}
<
/pre
>
<
/td
>
<
td
>
<
pre
>
{
data
[
key
]}
<
/pre
>
<
pre
style
=
{
style
.
font
}
>
{
data
[
key
]}
<
/pre
>
<
/td
>
<
/tr>
)
}
...
...
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