rudeshark.net/src/client/assets/version.html

19 lines
294 B
HTML
Raw Normal View History

2018-04-10 18:41:35 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Misskeyのリカバリ</title>
<script>
2018-04-11 04:48:04 +02:00
const v = window.prompt('Enter version:');
2018-04-10 18:41:35 +02:00
if (v) {
localStorage.setItem('v', v);
}
2018-04-11 04:48:04 +02:00
setTimeout(() => {
location.href = '/';
}, 500);
2018-04-10 18:41:35 +02:00
</script>
</head>
</html>