tixcraft_bot/webdriver/Maxbot_1.0.0/js/tixcraft_detail.js

11 lines
308 B
JavaScript
Raw Normal View History

2024-01-01 15:58:30 +00:00
(function () {
const currentUrl = window.location.href;
const event_code = currentUrl.split('/')[5];
//console.log(currentUrl);
//console.log(event_code);
if(event_code){
let new_url = "https://tixcraft.com/activity/game/"+ event_code;
location.href=new_url;
}
})();