Commit ce7a6330 authored by d11e9's avatar d11e9

improve button text overflow when func names are long

parent ce929eda
......@@ -270,6 +270,7 @@ UniversalDApp.prototype.getCallButton = function(args) {
var button = $('<button />')
.addClass( 'call' )
.attr('title', fun.displayName())
.text(args.bytecode ? 'Create' : fun.displayName())
.click( handleCallButtonClick );
......
......@@ -178,6 +178,8 @@
background-color: #666;
color: white;
cursor: pointer;
overflow: hidden;
text-overflow: ellipsis;
}
.udapp .instance input,
......
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