A keybinding tool for defending quickly in NationStates.
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- (() =>
- {
- const moveButton: HTMLButtonElement = document.querySelector('button[name=move_region]');
- if (moveButton) {
- const localid = (document.querySelector('input[name=localid]') as HTMLInputElement).value;
- moveButton.addEventListener('click', (e) =>
- {
- moveButton.disabled = true;
- e.preventDefault();
- window.location.href = `/template-overall=none/page=change_region?localid=${localid}®ion_name=${urlParams['region']}&move_region=1`;
- });
- }
- })();
|