Merge pull request #2162 from ONLYOFFICE/fix/Bug-59077

Bug 59077
This commit is contained in:
maxkadushkin 2022-12-26 18:15:59 +03:00 committed by GitHub
commit aa6765f019
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,9 @@ define([
render: function() { render: function() {
var el = this.template(this); var el = this.template(this);
this.$el = $(el); this.$el = $(el);
this.$el.find('span').tooltip({
title: this.label,
placement: 'cursor'});
this.rendered = true; this.rendered = true;
this.disable(this.disabled); this.disable(this.disabled);
return this; return this;