1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-21 07:06:39 +02:00

fixed sticky tooltips in settings

This commit is contained in:
antelle 2020-05-22 22:44:50 +02:00
parent 1fafa68793
commit 8de55c450a
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C

View File

@ -52,7 +52,7 @@ class FieldView extends View {
this.tip = typeof this.model.tip === 'function' ? this.model.tip() : this.model.tip;
if (this.tip) {
this.valueEl.attr('title', this.tip);
Tip.createTip(this.valueEl);
Tip.createTip(this.valueEl[0]);
}
}
}