summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-09-09 21:05:11 +0000
committerDries Buytaert <dries@buytaert.net>2010-09-09 21:05:11 +0000
commita16c46bf8a99745d7fa31cc6f2c34e0b17e7bed6 (patch)
tree1f9af43a6f50e580e1f4c1a9d77f5442be0ce492 /misc
parenta7d43eadae98daec005e8f2a3530789425d8bba3 (diff)
downloadbrdo-a16c46bf8a99745d7fa31cc6f2c34e0b17e7bed6.tar.gz
brdo-a16c46bf8a99745d7fa31cc6f2c34e0b17e7bed6.tar.bz2
- Patch #906922 by auzigog: error message icon is tiled for when the message appears on a batch page in place of a progress bar.
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) {