You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
504 B

3 years ago
window.onload = function () {
setInputCheckedStatus();
$("js-pre-step").onclick = function() {
location.href="./index.php?lang=" + getAddressLang() + "&step=welcome";
};
$("js-recheck").onclick = function () {
location.href="./index.php?lang=" + getAddressLang() + "&step=check";
};
$("js-submit").onclick = function () {
this.form.action="index.php?lang=" + getAddressLang() + "&step=setting_ui" + "&ui=" + $('userinterface').value;
};
3 years ago
};