Commit fd6ceee6 authored by d11e9's avatar d11e9

.empty().append() instead on .html()

parent d8b20876
...@@ -229,7 +229,7 @@ UniversalDApp.prototype.getCallButton = function(args) { ...@@ -229,7 +229,7 @@ UniversalDApp.prototype.getCallButton = function(args) {
var $result = getOutput( $('<a class="waiting" href="#" title="Waiting for transaction to be mined.">Polling for tx receipt...</a>') ); var $result = getOutput( $('<a class="waiting" href="#" title="Waiting for transaction to be mined.">Polling for tx receipt...</a>') );
if (lookupOnly && !inputs.length) { if (lookupOnly && !inputs.length) {
$outputOverride.html( $result ); $outputOverride.empty().append( $result );
} else { } else {
outputSpan.append( $result ); outputSpan.append( $result );
} }
......
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