add new options for moving nav links

This commit is contained in:
albert
2013-03-07 18:31:20 -05:00
parent f8619e689e
commit d907dfedbb
13 changed files with 70 additions and 44 deletions

View File

@@ -127,25 +127,6 @@
}
Danbooru.Post.initialize_nav_help_link = function() {
$("#close-nav-help-link").click(function(e) {
Danbooru.Cookie.put("close-nav-help", "1");
$("#nav-help").hide();
e.preventDefault();
});
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() {