remove support for listbooru for tag subscriptions, enable for saved searches #2523

This commit is contained in:
r888888888
2015-10-27 17:45:32 -07:00
parent 5de709fda7
commit fafb881080
4 changed files with 39 additions and 49 deletions

View File

@@ -523,16 +523,12 @@
Danbooru.Post.initialize_saved_searches = function() {
$("#save-search").click(function() {
var input = window.prompt("Category for this saved search (optional):");
if (input !== null) {
$.post(
"/saved_searches.js",
{
"tags": $("#tags").attr("value"),
"category": input
}
);
}
$.post(
"/saved_searches.js",
{
"tags": $("#tags").attr("value")
}
);
});
}
})();