12 lines
335 B
JavaScript
12 lines
335 B
JavaScript
let IqdbQuery = {};
|
|
|
|
IqdbQuery.initialize_all = function() {
|
|
$(document).on("click.danbooru", "a.toggle-iqdb-posts-low-similarity", function(event) {
|
|
$(".iqdb-posts-low-similarity").toggle();
|
|
$("a.toggle-iqdb-posts-low-similarity").toggle();
|
|
event.preventDefault();
|
|
});
|
|
};
|
|
|
|
$(document).ready(IqdbQuery.initialize_all);
|