mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Series Table
This commit is contained in:
parent
0db39edb2c
commit
475c86dcab
8 changed files with 51 additions and 46 deletions
12
UI/Series/Index/Table/AirDateCell.js
Normal file
12
UI/Series/Index/Table/AirDateCell.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
Backgrid.AirDateCell = Backgrid.Cell.extend({
|
||||
className: "air-date-cell",
|
||||
|
||||
render: function () {
|
||||
this.$el.empty();
|
||||
var airDate = this.model.get(this.column.get("name"));
|
||||
|
||||
this.$el.html(bestDateString(airDate));
|
||||
|
||||
return this;
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue