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
847add31
Commit
847add31
authored
Oct 06, 2015
by
d11e9
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix error html-escaping
parent
d6df4e02
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
index.html
index.html
+2
-1
browser-solidity.css
stylesheets/browser-solidity.css
+1
-0
No files found.
index.html
View file @
847add31
...
...
@@ -431,7 +431,8 @@ THE SOFTWARE.
var
renderError
=
function
(
message
)
{
var
type
=
errortype
(
message
);
var
$error
=
$
(
'<div class="sol '
+
type
+
'"><pre>'
+
message
+
'</pre><div class="close">x</div></div>'
);
var
$pre
=
$
(
"<pre />"
).
text
(
message
);
var
$error
=
$
(
'<div class="sol '
+
type
+
'"><div class="close">x</div></div>'
).
prepend
(
$pre
);
$
(
'#output'
).
append
(
$error
);
var
err
=
message
.
match
(
/^:
([
0-9
]
*
)
:
([
0-9
]
*
)
/
);
if
(
err
&&
err
.
length
)
{
...
...
stylesheets/browser-solidity.css
View file @
847add31
...
...
@@ -208,6 +208,7 @@ body {
background-color
:
transparent
;
margin
:
0
;
font-size
:
10px
;
border
:
0
none
;
}
.sol.error
.close
,
...
...
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