You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/UI/System/Info/Health/HealthWikiCell.js

24 lines
677 B

var $ = require('jquery');
var Backgrid = require('backgrid');
module.exports = Backgrid.UriCell.extend({
className : 'wiki-link-cell',
title : 'Read the Wiki for more information',
text : 'Wiki',
render : function() {
this.$el.empty();
var rawValue = this.model.get(this.column.get('name'));
var formattedValue = this.formatter.fromRaw(rawValue, this.model);
this.$el.append($('<a>', {
tabIndex : -1,
href : rawValue,
title : this.title || formattedValue,
target : this.target
}).text(this.text));
this.delegateEvents();
return this;
}
});