remove a tag from caveat

pull/1/head
d11e9 9 years ago
parent 4ec2a82806
commit d8b20876d7
  1. 2
      libs/universal-dapp.js
  2. 3
      stylesheets/universal-dapp.css

@ -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;
}

Loading…
Cancel
Save