Browse Source

fix menu

master
artem 6 years ago
parent
commit
5a6e253014
  1. 10
      blockvkbot.user.js

10
blockvkbot.user.js

@ -35,7 +35,15 @@ var peaple = JSON.stringify({
$(".hideBlackList").click();
location.reload();
return false;
});
});
$(".hideBlackList").unbind().on('click', function() {
$(this).closest(".blackListGened").fadeOut(500);
$(this).unbind();
$(".removeBlackList").unbind();
$(this).closest(".blackListGened").remove();
return false;
});
}, "13");
var timerId = setInterval(function() {
if (typeof $ !=="function"){
var script = document.createElement("script");

Loading…
Cancel
Save