Commit 61987b6e authored by d11e9's avatar d11e9

show inputs as title as well as placeholder

parent 0044ad3e
...@@ -191,7 +191,7 @@ UniversalDApp.prototype.getCallButton = function(args) { ...@@ -191,7 +191,7 @@ UniversalDApp.prototype.getCallButton = function(args) {
inputs += inp.type + ' ' + inp.name; inputs += inp.type + ' ' + inp.name;
}); });
if (!args.bytecode && !fun.displayName()) return; if (!args.bytecode && !fun.displayName()) return;
var inputField = $('<input/>').attr('placeholder', inputs); var inputField = $('<input/>').attr('placeholder', inputs).attr('title', inputs);
var $outputOverride = $('<div class="value" />'); var $outputOverride = $('<div class="value" />');
var outputSpan = $('<div class="output"/>'); var outputSpan = $('<div class="output"/>');
......
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