2023-04-28 18:26:57 +00:00
|
|
|
$(document).ready(function(){
|
2023-04-29 23:32:22 +00:00
|
|
|
$(this).on("contextmenu", e => e.preventDefault());
|
2023-05-01 23:55:04 +00:00
|
|
|
$("body").delay(500).fadeTo(500, 1);
|
|
|
|
|
|
|
|
$(".mastodon").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://fosstodon.org/@alexanderzhirov");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".twitter").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://twitter.com/zhirofficial");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".linkedin").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://www.linkedin.com/in/alexander-zhirov-34b6711a6");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".facebook").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://www.facebook.com/azhirov1991");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".instagram").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://www.instagram.com/alexanderzhirov");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".git").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://git.zhirov.kz/alexander");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".github").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://github.com/AlexanderZhirov");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".telegram").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://t.me/alexanderzhirov");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".solus").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://dev.getsol.us/p/alexanderzhirov");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".blog").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://blog.zhirov.kz");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".ftp").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("https://ftp.zhirov.kz");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(".email").on( "click", function() {
|
2023-05-02 00:09:31 +00:00
|
|
|
window.open("");
|
2023-05-01 23:55:04 +00:00
|
|
|
});
|
2023-04-28 18:26:57 +00:00
|
|
|
});
|