calling open_user after clicking on username

This commit is contained in:
Václav Šmejkal 2024-05-20 20:05:23 +02:00
parent 627fd8ac7b
commit 7cf9d2b6a9
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -15,4 +15,9 @@
$("#left_panel").html(result); $("#left_panel").html(result);
} }
}); });
$("#left_panel").on("click", ".output", function(event)
{
open_user(event.target.innerHTML);
});
</script> </script>