mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'Cells/TemplatedCell'
|
|
], function (TemplatedCell) {
|
|
return TemplatedCell.extend({
|
|
|
|
className: 'quality-cell',
|
|
template : 'Cells/QualityTemplate'
|
|
|
|
});
|
|
});
|