Download task output UI fix

pull/56/head
Piero Toffanin 2018-11-30 14:37:54 -05:00
rodzic 3b5c5094bd
commit e4e6054aca
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -167,7 +167,7 @@ $(function() {
Task.prototype.downloadOutput = function(){
var self = this;
var url = "/task/" + self.uuid + "/output";
$.get(url, { line: -10, token: token })
$.get(url, { token: token })
.done(function(output) {
var wnd = window.open("about:blank", "", "_blank");
wnd.document.write(output.join("<br/>"));