Wrongly doing an append where I meant to just replace the html
This commit is contained in:
@@ -31,7 +31,7 @@ function updateProgressBar(percent) {
|
||||
|
||||
function updateStatusMessage(message, error) {
|
||||
if (message != null && message != undefined) {
|
||||
jQuery(".loader > strong").append(message);
|
||||
jQuery(".loader > strong").html(message);
|
||||
}
|
||||
|
||||
if (error != undefined) {
|
||||
|
||||
Reference in New Issue
Block a user