mirror of
https://github.com/Radarr/Radarr
synced 2026-02-13 10:12:17 +01:00
* Cleaning up some jsLiniting problems * fix jshint issue with variablle declaration This shouldn't be an issue because of hoisting but, jshint is finicky.
9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
var TemplatedCell = require('./TemplatedCell');
|
|
|
|
module.exports = TemplatedCell.extend({
|
|
className : 'movie-title-cell',
|
|
template : 'Cells/MovieDownloadStatusTemplate',
|
|
sortKey : function(model) {
|
|
return 0;
|
|
}
|
|
});
|