This commit is contained in:
albert
2011-08-15 11:30:14 -04:00
parent e42ea9c608
commit 63564921e5
7 changed files with 305 additions and 169 deletions

View File

@@ -3,6 +3,10 @@
return $("meta[name=" + key + "]").attr("content");
}
Danbooru.notice = function(msg) {
$('#notice').html(msg).show();
}
Danbooru.j_alert = function(title, msg) {
$('<div title="' + title + '"></div>').html(msg).dialog();
}