No more caching of log files, also better handling of logs on page load

This commit is contained in:
Mark McDowall 2013-10-07 19:37:02 -07:00
parent 7d9eaf8cfc
commit ee2973efe7
8 changed files with 85 additions and 36 deletions

View file

@ -0,0 +1,17 @@
'use strict';
define(
[
'Cells/NzbDroneCell'
], function (NzbDroneCell) {
return NzbDroneCell.extend({
className: 'download-log-cell',
render: function () {
this.$el.empty();
this.$el.html('<a href="/log/{0}" class="no-router" target="_blank">Download</a>'.format(this.cellValue));
return this;
}
});
});