- Patch #906922 by auzigog: error message icon is tiled for when the message appears on a batch page in place of a progress bar.

merge-requests/26/head
Dries Buytaert 2010-09-09 21:05:11 +00:00
parent a7d43eadae
commit a16c46bf8a
1 changed files with 1 additions and 1 deletions

View File

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