'use strict'; define( [ 'Cells/NzbDroneCell', 'System/StatusModel' ], function (NzbDroneCell, StatusModel) { return NzbDroneCell.extend({ className: 'download-log-cell', render: function () { this.$el.empty(); this.$el.html('Download'.format(StatusModel.get('urlBase'), this.cellValue)); return this; } }); });