mirror of https://github.com/Sonarr/Sonarr
10 lines
238 B
JavaScript
10 lines
238 B
JavaScript
|
"use strict";
|
||
|
define(['app', 'Cells/TemplatedCell'], function () {
|
||
|
NzbDrone.Cells.SeriesTitleCell = NzbDrone.Cells.TemplatedCell.extend({
|
||
|
|
||
|
className: 'series-title',
|
||
|
template : 'Cells/SeriesTitleTemplate'
|
||
|
|
||
|
});
|
||
|
});
|