1
0
mirror of https://github.com/Daichimarukana/uwuzu.git synced 2026-06-05 11:34:41 +00:00
Files
uwuzu-mirror/js/nsfw_event.js
T
2023-09-16 23:19:30 +09:00

10 lines
369 B
JavaScript

$(document).on('click', '.mini_irobtn', function(event) {
event.preventDefault();
mother = $(this).parent();
mother2 = $(mother).parent();
$(mother2).next('.nsfw_main').children().removeClass('block');
$(mother2).next('.nsfw_main').children().addClass('clear');
$(mother2).next('.nsfw_main').removeClass('nsfw_main');
$(mother2).hide();
});