From d8b20876d78d9e45632e4c046a5f323ae989047e Mon Sep 17 00:00:00 2001 From: d11e9 Date: Tue, 6 Oct 2015 19:06:49 +0100 Subject: [PATCH] remove a tag from caveat --- libs/universal-dapp.js | 2 +- stylesheets/universal-dapp.css | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/universal-dapp.js b/libs/universal-dapp.js index 78aa208e9a..51436002dd 100644 --- a/libs/universal-dapp.js +++ b/libs/universal-dapp.js @@ -202,7 +202,7 @@ UniversalDApp.prototype.getCallButton = function(args) { var getGasUsedOutput = function (result) { var $gasUsed = $('
') - var caveat = lookupOnly ? '(caveat)' : ''; + var caveat = lookupOnly ? '(caveat)' : ''; if (result.gasUsed) { var gas = result.gasUsed.toString(10) $gasUsed.html('Cost: ' + gas + ' gas. ' + caveat ) diff --git a/stylesheets/universal-dapp.css b/stylesheets/universal-dapp.css index ea3443f743..71c8a28749 100644 --- a/stylesheets/universal-dapp.css +++ b/stylesheets/universal-dapp.css @@ -8,7 +8,8 @@ overflow: auto; } -.udapp a { +.udapp a, +.udapp .caveat { color: #7A7AE2; }