mirror of
https://github.com/nextcloud/server.git
synced 2026-06-07 07:43:18 -04:00
Fix tooltip for versions mtime
It was missing a call to jquery.tooltip
This commit is contained in:
parent
9232a124e2
commit
cfd9c7f6b9
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