Commit d965dde3 authored by d11e9's avatar d11e9

add memory or blockcahin tag to contract insatnce titles

parent ce7a6330
...@@ -119,7 +119,8 @@ UniversalDApp.prototype.getInstanceInterface = function (contract, address, $tar ...@@ -119,7 +119,8 @@ UniversalDApp.prototype.getInstanceInterface = function (contract, address, $tar
$close.click( function(){ $instance.remove(); } ) $close.click( function(){ $instance.remove(); } )
$instance.append( $close ); $instance.append( $close );
} }
var $title = $('<span class="title"/>').text( contract.name + " at " + (self.options.vm ? '0x' : '') + address.toString('hex') ); var context = self.options.vm ? 'memory' : 'blockchain';
var $title = $('<span class="title"/>').text( contract.name + " at " + (self.options.vm ? '0x' : '') + address.toString('hex') + ' (' + context + ')');
$title.click(function(){ $title.click(function(){
$instance.toggleClass('hide'); $instance.toggleClass('hide');
}); });
......
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