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
492976ab
Commit
492976ab
authored
Apr 13, 2016
by
Liana Husikyan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9 from LianaHus/master
style fixes
parents
f639d2cb
43ef422b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
debugger.js
src/debugger.js
+1
-1
index.js
src/index.js
+3
-3
txBrowser.js
src/txBrowser.js
+4
-4
No files found.
src/debugger.js
View file @
492976ab
...
...
@@ -4,7 +4,7 @@ var TxBrowser = require('./txBrowser');
module
.
exports
=
React
.
createClass
({
render
:
function
()
{
return
(
<
div
>
<
p
>
Debugger
<
/p
>
<
p
>
<
h1
>
Debugger
<
/h1>
</
p
>
<
TxBrowser
/>
<
/div
>
);
...
...
src/index.js
View file @
492976ab
...
...
@@ -3,9 +3,9 @@ var React = require('react');
var
Web3
=
require
(
'web3'
);
var
Web3Admin
=
require
(
'./web3Admin'
)
web3
=
new
Web3
();
web3
.
setProvider
(
new
web3
.
providers
.
HttpProvider
(
'http://localhost:8545'
));
Web3Admin
.
extend
(
web3
);
web3
=
new
Web3
();
web3
.
setProvider
(
new
web3
.
providers
.
HttpProvider
(
'http://localhost:8545'
));
Web3Admin
.
extend
(
web3
);
var
Debugger
=
require
(
'./debugger'
);
...
...
src/txBrowser.js
View file @
492976ab
...
...
@@ -23,10 +23,10 @@ module.exports = React.createClass({
return
(
<
div
>
<
div
>
Trasnaction
details
<
/div
>
<
input
onChange
=
{
this
.
updateBlockN
}
type
=
"text"
placeholder
=
{
this
.
state
.
blockNumber
}
><
/input
>
<
input
onChange
=
{
this
.
updateTxN
}
type
=
"text"
placeholder
=
{
this
.
state
.
txNumber
}
><
/input
>
<
button
onClick
=
{
this
.
submit
}
>
Get
<
/button
>
<
div
><
h3
>
Transaction
details
<
/h3>
</
div
>
<
input
onChange
=
{
this
.
updateBlockN
}
type
=
"text"
placeholder
=
{
this
.
state
.
blockNumber
}
><
/input
>
<
input
onChange
=
{
this
.
updateTxN
}
type
=
"text"
placeholder
=
{
this
.
state
.
txNumber
}
><
/input
>
<
button
onClick
=
{
this
.
submit
}
>
Get
<
/button
>
<
/div
>
);
}
...
...
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