Files
Readarr/src/UI/System/Info/Health/HealthCell.js
T
2015-02-14 19:14:57 +01:00

12 lines
345 B
JavaScript

var NzbDroneCell = require('../../../Cells/NzbDroneCell');
module.exports = NzbDroneCell.extend({
className : 'log-level-cell',
render : function() {
var level = this._getValue();
this.$el.html('<i class="icon-nd-health-{0}" title="{1}"/>'.format(this._getValue().toLowerCase(), level));
return this;
}
});