add memory or blockcahin tag to contract insatnce titles

pull/1/head
d11e9 9 years ago
parent ce7a633069
commit d965dde3b7
  1. 3
      libs/universal-dapp.js

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

Loading…
Cancel
Save