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
788172dd
Commit
788172dd
authored
Aug 25, 2017
by
yann300
Committed by
GitHub
Aug 25, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #716 from serapath-contribution/master
small terminal bugfix & standardjs code cleanup
parents
0b75befb
5648369b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
terminal.js
src/app/panels/terminal.js
+2
-2
universal-dapp.js
src/universal-dapp.js
+0
-1
No files found.
src/app/panels/terminal.js
View file @
788172dd
...
...
@@ -328,8 +328,8 @@ class Terminal {
var
self
=
this
var
args
=
[...
arguments
]
self
.
data
.
session
.
push
(
args
)
args
.
forEach
(
function
(
data
=
{}
)
{
if
(
!
data
.
type
)
data
=
{
type
:
'default'
,
value
:
data
}
args
.
forEach
(
function
(
data
)
{
if
(
!
data
||
!
data
.
type
)
data
=
{
type
:
'default'
,
value
:
data
}
var
render
=
self
.
_templates
[
data
.
type
]
if
(
!
render
)
render
=
self
.
_templates
.
default
var
blocks
=
render
(
data
.
value
)
...
...
src/universal-dapp.js
View file @
788172dd
...
...
@@ -3,7 +3,6 @@
var
$
=
require
(
'jquery'
)
var
ethJSUtil
=
require
(
'ethereumjs-util'
)
var
ethJSABI
=
require
(
'ethereumjs-abi'
)
var
BN
=
ethJSUtil
.
BN
var
EventManager
=
require
(
'ethereum-remix'
).
lib
.
EventManager
var
crypto
=
require
(
'crypto'
)
...
...
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