blob: 5eb5e1468c5b6a80833e82e1126c7a7d010978bf [file] [log] [blame]
Andreuefe66eb2019-09-21 18:41:49 +02001function change_victim(user) {
2 $(".victima").fadeOut(400, function() {
Andreufd98b5d2019-09-22 13:15:10 +02003 $(".victima").load('./ajax/victiminfo.php?userid=' + user.id + " #victima");
Andreuefe66eb2019-09-21 18:41:49 +02004 $(".victima").fadeIn(400);
5 });
6}
Andreu543e70c2019-09-22 14:08:49 +02007
8function read_message(msg, type) {
9 $.notify(msg, type);
10 newURL = window.location.href.split('?')[0];
11 history.pushState({}, null, newURL);
12}