use title in inputbox

fixes #5439
This commit is contained in:
Joao Moreno
2016-04-19 09:20:59 +02:00
parent a0ff6d63cb
commit 29ff5de615

View File

@@ -118,6 +118,7 @@ export class InputBox extends Widget {
if (this.placeholder) {
this.input.setAttribute('placeholder', this.placeholder);
this.input.title = this.placeholder;
}
this.oninput(this.input, () => this.onValueChange());