goomer
This commit is contained in:
MallocNull 2017-04-17 23:59:38 -05:00
parent 09219e12b4
commit 08a7619f05
7 changed files with 27 additions and 10 deletions

5
client/check.js Normal file
View file

@ -0,0 +1,5 @@
document.onload = function() {
Entrypoint.Main();
}

11
client/error.html Normal file
View 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
View file

@ -0,0 +1,5 @@
class Entrypoint {
static Main(): void {
}
}

View file

@ -1,5 +1,7 @@
class FileCache {
static Initialize() {
static dbHandle: IDBDatabase = null;
static Initialize(): void {
}
}

View file

@ -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.");

View file

@ -17,7 +17,7 @@ namespace CircleScape {
}
protected override void OnMessage(MessageEventArgs e) {
Sess
}
protected override void OnClose(CloseEventArgs e) {

View file

@ -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>