summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/progress.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/progress.js b/misc/progress.js
index a8ade3cf6..b871b8d86 100644
--- a/misc/progress.js
+++ b/misc/progress.js
@@ -96,7 +96,7 @@ Drupal.progressBar.prototype.sendPing = function () {
* Display errors on the page.
*/
Drupal.progressBar.prototype.displayError = function (string) {
- var error = $('<div class="error"></div>').html(string);
+ var error = $('<div class="messages error"></div>').html(string);
$(this.element).before(error).hide();
if (this.errorCallback) {