This commit is contained in:
albert
2013-03-01 06:41:30 -08:00
parent 48953df07b
commit bd316e2bbc
5 changed files with 22 additions and 2 deletions

View File

@@ -136,6 +136,16 @@
if (Danbooru.Cookie.get("close-nav-help") === "1") {
$("#nav-help").hide();
}
$("#close-search-seq-nav").click(function(e) {
Danbooru.Cookie.put("close-search-seq", "1");
$("#search-seq-nav").hide();
e.preventDefault();
});
if (Danbooru.Cookie.get("close-search-seq") === "1") {
$("#search-seq-nav").hide();
}
}
Danbooru.Post.initialize_titles = function() {