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
455db8ef
Commit
455db8ef
authored
May 04, 2017
by
yann300
Committed by
GitHub
May 04, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #536 from ethereum/link
Update index.html
parents
4e97db9f
f083262b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
index.html
index.html
+2
-2
universal-dapp.js
src/universal-dapp.js
+2
-2
No files found.
index.html
View file @
455db8ef
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
THE SOFTWARE.
THE SOFTWARE.
-->
-->
<meta
http-equiv=
"X-UA-Compatible"
content=
"chrome=1"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"chrome=1"
>
<title>
Remix
</title>
<title>
Remix
- Solidity IDE
</title>
<link
rel=
"stylesheet"
href=
"assets/css/styles.css"
>
<link
rel=
"stylesheet"
href=
"assets/css/styles.css"
>
<link
rel=
"stylesheet"
href=
"assets/css/pygment_trac.css"
>
<link
rel=
"stylesheet"
href=
"assets/css/pygment_trac.css"
>
<link
rel=
"stylesheet"
href=
"assets/css/universal-dapp.css"
>
<link
rel=
"stylesheet"
href=
"assets/css/universal-dapp.css"
>
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
<li
class=
"envView"
title=
"Environment"
>
Contract
</li>
<li
class=
"envView"
title=
"Environment"
>
Contract
</li>
<li
class=
"debugView"
title=
"Debugger"
>
Debugger
</li>
<li
class=
"debugView"
title=
"Debugger"
>
Debugger
</li>
<li
class=
"staticanalysisView"
title=
"Static Analysis"
>
Analysis
</li>
<li
class=
"staticanalysisView"
title=
"Static Analysis"
>
Analysis
</li>
<li
id=
"helpButton"
><a
href=
"https://
solidity
.readthedocs.org"
target=
"_blank"
title=
"Open Documentation"
>
Docs
</a></li>
<li
id=
"helpButton"
><a
href=
"https://
remix
.readthedocs.org"
target=
"_blank"
title=
"Open Documentation"
>
Docs
</a></li>
</ul>
</ul>
</div>
</div>
<div
id=
"optionViews"
class=
"settingsView"
>
<div
id=
"optionViews"
class=
"settingsView"
>
...
...
src/universal-dapp.js
View file @
455db8ef
...
@@ -686,11 +686,11 @@ UniversalDApp.prototype.getCallButton = function (args) {
...
@@ -686,11 +686,11 @@ UniversalDApp.prototype.getCallButton = function (args) {
replaceOutput
(
$result
,
$
(
'<span/>'
).
text
(
err
).
addClass
(
'error'
))
replaceOutput
(
$result
,
$
(
'<span/>'
).
text
(
err
).
addClass
(
'error'
))
// VM only
// VM only
}
else
if
(
self
.
executionContext
.
isVM
()
&&
result
.
vm
.
exception
===
0
&&
result
.
vm
.
exceptionError
)
{
}
else
if
(
self
.
executionContext
.
isVM
()
&&
result
.
vm
.
exception
===
0
&&
result
.
vm
.
exceptionError
)
{
replaceOutput
(
$result
,
$
(
'<span/>'
).
text
(
'
VM Exception: '
+
result
.
vm
.
exceptionError
).
addClass
(
'error'
))
replaceOutput
(
$result
,
$
(
'<span/>'
).
text
(
'
Exception during execution. ('
+
result
.
vm
.
exceptionError
+
'). Please debug the transaction for more information.'
).
addClass
(
'error'
))
$result
.
append
(
getDebugTransaction
(
txResult
))
$result
.
append
(
getDebugTransaction
(
txResult
))
// VM only
// VM only
}
else
if
(
self
.
executionContext
.
isVM
()
&&
result
.
vm
.
return
===
undefined
)
{
}
else
if
(
self
.
executionContext
.
isVM
()
&&
result
.
vm
.
return
===
undefined
)
{
replaceOutput
(
$result
,
$
(
'<span/>'
).
text
(
'Exception during execution.'
).
addClass
(
'error'
))
replaceOutput
(
$result
,
$
(
'<span/>'
).
text
(
'Exception during execution.
Please debug the transaction for more information.
'
).
addClass
(
'error'
))
$result
.
append
(
getDebugTransaction
(
txResult
))
$result
.
append
(
getDebugTransaction
(
txResult
))
}
else
if
(
isConstructor
)
{
}
else
if
(
isConstructor
)
{
replaceOutput
(
$result
,
getGasUsedOutput
(
result
,
result
.
vm
))
replaceOutput
(
$result
,
getGasUsedOutput
(
result
,
result
.
vm
))
...
...
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