keed
goomer
This commit is contained in:
parent
09219e12b4
commit
08a7619f05
7 changed files with 27 additions and 10 deletions
5
client/check.js
Normal file
5
client/check.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
document.onload = function() {
|
||||
|
||||
|
||||
Entrypoint.Main();
|
||||
}
|
11
client/error.html
Normal file
11
client/error.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Error</title>
|
||||
<meta charset="UTF-8" />
|
||||
</head>
|
||||
<body>
|
||||
<h2>Your browser does not support a necessary feature to run this application.</h2>
|
||||
<p>Please upgrade your browser to the most recent version or install a modern browser, such as Mozilla Firefox or Google Chrome.</p>
|
||||
</body>
|
||||
</html>
|
5
client/src/Entrypoint.ts
Normal file
5
client/src/Entrypoint.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
class Entrypoint {
|
||||
static Main(): void {
|
||||
|
||||
}
|
||||
}
|
|
@ -1,5 +1,7 @@
|
|||
class FileCache {
|
||||
static Initialize() {
|
||||
static dbHandle: IDBDatabase = null;
|
||||
|
||||
static Initialize(): void {
|
||||
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
window.indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB;
|
||||
window.IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction || window.msIDBTransaction;
|
||||
window.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange || window.msIDBKeyRange
|
||||
|
||||
if (!window.indexedDB)
|
||||
window.alert("Your browser doesn't support a stable version of IndexedDB.");
|
|
@ -17,11 +17,11 @@ namespace CircleScape {
|
|||
}
|
||||
|
||||
protected override void OnMessage(MessageEventArgs e) {
|
||||
|
||||
Sess
|
||||
}
|
||||
|
||||
protected override void OnClose(CloseEventArgs e) {
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -5,5 +5,5 @@
|
|||
<package id="System.Data.SQLite.Core" version="1.0.105.0" targetFramework="net452" />
|
||||
<package id="System.Data.SQLite.EF6" version="1.0.105.0" targetFramework="net452" />
|
||||
<package id="System.Data.SQLite.Linq" version="1.0.105.0" targetFramework="net452" />
|
||||
<package id="WebSocketSharp" version="1.0.3-rc11" targetFramework="net452" />
|
||||
<package id="WebSocketSharp" version="1.0.3-rc10" targetFramework="net452" />
|
||||
</packages>
|
Loading…
Reference in a new issue