This commit is contained in:
Toks
2013-05-17 13:19:14 -04:00
parent d07219e092
commit 2b427273b2
3 changed files with 11 additions and 2 deletions

View File

@@ -16,6 +16,14 @@ $(function() {
e.preventDefault();
});
$("#hide-dmail-notice").click(function(e) {
$dmail_notice = $("#dmail-notice")
$dmail_notice.hide();
var dmail_id = $dmail_notice.data("id");
Danbooru.Cookie.put("hide_dmail_notice", dmail_id);
e.preventDefault();
});
$("#close-notice-link").click(function(e) {
$('#notice').fadeOut("fast");
e.preventDefault();