1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-23 02:05:27 +02:00
Sonarr/src/UI/Cells/QualityProfileCell.js

26 lines
678 B
JavaScript
Raw Normal View History

2013-07-18 03:39:41 +03:00
'use strict';
define(
[
'backgrid',
2013-11-11 07:09:11 +03:00
'Quality/QualityProfileCollection',
'underscore'
], function (Backgrid, QualityProfileCollection,_) {
2013-07-18 03:39:41 +03:00
return Backgrid.Cell.extend({
className: 'quality-profile-cell',
render: function () {
this.$el.empty();
var qualityProfileId = this.model.get(this.column.get('name'));
var profile = _.findWhere(QualityProfileCollection.models, { id: qualityProfileId });
if (profile) {
this.$el.html(profile.get('name'));
}
return this;
}
});
});