Set title of author node (which might get clipped).

This commit is contained in:
Joachim Bauch 2021-12-17 13:07:41 +01:00
parent 4369e54f5a
commit bee583b64e
No known key found for this signature in database
GPG key ID: 77C1D22D53E15F02

View file

@ -812,6 +812,7 @@ TextArea.prototype.drawCircle = function() {
TextArea.prototype.update = function(page_annotator) {
this.authorLabel.text(this.author || 'Anonymous');
this.authorLabel.attr('title', this.author || 'Anonymous');
this.authorLabel.css('background-color', this.color);
this.textareaContainer.css('left', this.textareaContainerPos[0]*this.page_annotator.scale);
this.textareaContainer.css('top', this.textareaContainerPos[1]*this.page_annotator.scale);