Display the entire metadata too

pull/1/head
Alex Beregszaszi 8 years ago
parent 4198212135
commit 6f04478ee6
  1. 4
      src/app/ui-helper.js

@ -130,6 +130,10 @@ module.exports = {
var button = $('<button>Toggle Details</button>') var button = $('<button>Toggle Details</button>')
var details = $('<div style="display: none;"/>') var details = $('<div style="display: none;"/>')
if (contract.metadata) {
details.append(this.preRow('Metadata', contract.metadata))
}
var funHashes = '' var funHashes = ''
for (var fun in contract.functionHashes) { for (var fun in contract.functionHashes) {
funHashes += contract.functionHashes[fun] + ' ' + fun + '\n' funHashes += contract.functionHashes[fun] + ' ' + fun + '\n'

Loading…
Cancel
Save