tixcraft_bot/webdriver/Maxbotplus_1.0.0/js/tixcraft_detail.js

12 lines
355 B
JavaScript

(function () {
const currentUrl = window.location.href;
const event_code = currentUrl.split('/')[5];
//console.log(currentUrl);
//console.log(event_code);
if(event_code){
let domain = currentUrl.split('/')[2];
let new_url = "https://"+ domain +"/activity/game/"+ event_code;
location.href=new_url;
}
})();