A keybinding tool for defending quickly in NationStates.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

13 строки
529 B

  1. (() =>
  2. {
  3. const moveButton: HTMLButtonElement = document.querySelector('button[name=move_region]');
  4. if (moveButton) {
  5. const localid = (document.querySelector('input[name=localid]') as HTMLInputElement).value;
  6. moveButton.addEventListener('click', (e) =>
  7. {
  8. moveButton.disabled = true;
  9. e.preventDefault();
  10. window.location.href = `/template-overall=none/page=change_region?localid=${localid}&region_name=${urlParams['region']}&move_region=1`;
  11. });
  12. }
  13. })();