styled log page.

This commit is contained in:
kay.one 2013-07-13 19:40:47 -07:00
commit 8f9b9c901c
8 changed files with 1804 additions and 43 deletions

20
UI/Logs/LogTimeCell.js Normal file
View file

@ -0,0 +1,20 @@
'use strict';
define(
[
'Cells/NzbDroneCell',
'moment'
], function (NzbDroneCell, Moment) {
return NzbDroneCell.extend({
className: 'log-time-cell',
render: function () {
var date = Moment(this._getValue());
this.$el.html(date.format('LT'));
this.$el.attr('title', date.format('LLLL'));
return this;
}
});
});