Browse Source

Fix tooltip for versions mtime

It was missing a call to jquery.tooltip
tags/v9.1.0beta1
Vincent Petry 8 years ago
parent
commit
03b90cec35
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      apps/files_versions/js/versionstabview.js

+ 3
- 1
apps/files_versions/js/versionstabview.js View File

@@ -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…
Cancel
Save