mirror of
https://github.com/PretendoNetwork/website.git
synced 2025-04-02 11:11:50 -04:00
8 lines
274 B
JavaScript
8 lines
274 B
JavaScript
/* eslint-disable no-undef */
|
|
const form = document.querySelector('.localization-form');
|
|
|
|
form.addEventListener('submit', (e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
window.location.href=`https://pretendo-locale-tester.herokuapp.com/?url=${e.target[0].value}`;
|
|
});
|