Fixed formatting of data strings.

pull/1/head
chriseth 9 years ago
parent e7fd63756a
commit cc08e0adcf
  1. 5
      index.html

@ -303,8 +303,9 @@ var formatGasEstimates = function(data) {
return text;
};
var formatAssemblyText = function(asm, prefix, source) {
var text = '';
text += prefix + '.code\n';
if (typeof(asm) == typeof('') || asm === null || asm === undefined)
return prefix + asm + '\n';
var text = prefix + '.code\n';
$.each(asm['.code'], function(i, item) {
var v = item.value === undefined ? '' : item.value;
var src = '';

Loading…
Cancel
Save