TheDesk Airi (ver.3)

This commit is contained in:
cutls
2018-03-14 03:31:31 +09:00
parent f57b9a21ab
commit 07daf46318
1783 changed files with 7106 additions and 2122 deletions

View File

@@ -1,7 +1,17 @@
//バージョンチェッカー
function verck(ver) {
localStorage.setItem("ver", ver);
var start = "https://dl.thedesk.top/ver.json";
var l = 5;
// 生成する文字列に含める文字セット
var c = "abcdefghijklmnopqrstuvwxyz0123456789";
var cl = c.length;
var r = "";
for(var i=0; i<l; i++){
r += c[Math.floor(Math.random()*cl)];
}
var start = "https://thedesk.top/ver.json";
fetch(start, {
method: 'GET'
}).then(function(response) {