blob: 4af9929c0564361f090b359aa63547b28d42f7a9 [file] [log] [blame]
Andreuefe66eb2019-09-21 18:41:49 +02001function change_victim(user) {
2 $(".victima").fadeOut(400, function() {
Andreub78c8792019-09-22 14:51:13 +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}