'use strict'; define( [ 'Cells/NzbDroneCell', 'moment', 'Shared/UiSettingsModel' ], function (NzbDroneCell, moment, UiSettings) { return NzbDroneCell.extend({ className: 'log-time-cell', render: function () { var date = moment(this._getValue()); this.$el.html('{0}'.format(date.format(UiSettings.get('timeFormat')), date.format(UiSettings.longDateFormat()))); return this; } }); });