1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/UI/Cells/QualityCell.js

13 lines
242 B
JavaScript
Raw Normal View History

2013-06-21 23:24:24 -07:00
'use strict';
define(
[
'Cells/TemplatedCell'
], function (TemplatedCell) {
return TemplatedCell.extend({
className: 'quality-cell',
2013-07-23 21:18:55 -07:00
template : 'Cells/QualityCellTemplate'
});
});