fixes #119: bad text on post flags

This commit is contained in:
albert
2011-10-14 17:12:03 -04:00
parent eb10aacdce
commit c03ed4f644
4 changed files with 14 additions and 4 deletions

View File

@@ -8,11 +8,13 @@
}
Danbooru.j_alert = function(title, msg) {
$('<div title="' + title + '"></div>').html(msg).dialog({modal: true});
this.notice(msg);
// $('<div title="' + title + '"></div>').html(msg).dialog({modal: true});
}
Danbooru.j_error = function(msg) {
this.j_alert("Error", msg);
this.notice(msg);
// this.j_alert("Error", msg);
}
Danbooru.ajax_start = function(target) {