Remove superfluous <br> tag from progress dialog output lines
This commit is contained in:
parent
12d40122d1
commit
b3594e367e
1 changed files with 2 additions and 2 deletions
|
|
@ -826,9 +826,9 @@ function showProgressModal(options, promise) {
|
|||
|
||||
if (output && pre) {
|
||||
if (success) {
|
||||
pre.append($("<span class='" + outputClassSuccess + "'>" + long + "</span><br>"));
|
||||
pre.append($("<span class='" + outputClassSuccess + "'>" + long + "</span>"));
|
||||
} else {
|
||||
pre.append($("<span class='" + outputClassFailure + "'>" + long + "</span><br>"));
|
||||
pre.append($("<span class='" + outputClassFailure + "'>" + long + "</span>"));
|
||||
}
|
||||
pre.scrollTop(pre[0].scrollHeight - pre.height());
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue