mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
14 lines
342 B
JavaScript
14 lines
342 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'Cells/TemplatedCell',
|
|
'Cells/Edit/QualityCellEditor'
|
|
], function (TemplatedCell, QualityCellEditor) {
|
|
return TemplatedCell.extend({
|
|
|
|
className: 'quality-cell',
|
|
template : 'Cells/QualityCellTemplate',
|
|
editor : QualityCellEditor
|
|
});
|
|
});
|