Commit d8b20876 authored by d11e9's avatar d11e9

remove a tag from caveat

parent 4ec2a828
......@@ -202,7 +202,7 @@ UniversalDApp.prototype.getCallButton = function(args) {
var getGasUsedOutput = function (result) {
var $gasUsed = $('<div class="gasUsed">')
var caveat = lookupOnly ? '<em>(<a href="#" title="Cost only applies when called by a contract">caveat</a>)</em>' : '';
var caveat = lookupOnly ? '<em>(<span class="caveat" title="Cost only applies when called by a contract">caveat</span>)</em>' : '';
if (result.gasUsed) {
var gas = result.gasUsed.toString(10)
$gasUsed.html('<strong>Cost:</strong> ' + gas + ' gas. ' + caveat )
......
......@@ -8,7 +8,8 @@
overflow: auto;
}
.udapp a {
.udapp a,
.udapp .caveat {
color: #7A7AE2;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment