mirror of
https://github.com/nextcloud/server.git
synced 2026-06-07 07:43:18 -04:00
Merge pull request #22924 from owncloud/stable9-versions-fixmtimetooltip
[stable9] Fix tooltip for versions mtime
This commit is contained in:
commit
d652c87f86
1 changed files with 3 additions and 1 deletions
|
|
@ -140,7 +140,9 @@
|
|||
},
|
||||
|
||||
_onAddModel: function(model) {
|
||||
this.$versionsContainer.append(this.itemTemplate(this._formatItem(model)));
|
||||
var $el = $(this.itemTemplate(this._formatItem(model)));
|
||||
this.$versionsContainer.append($el);
|
||||
$el.find('.has-tooltip').tooltip();
|
||||
},
|
||||
|
||||
template: function(data) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue