Wrongly doing an append where I meant to just replace the html

This commit is contained in:
Sebastiaan Janssen
2013-02-27 09:53:45 -01:00
parent 6948d70b75
commit eda9ba07f4

View File

@@ -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) {