nothing
This commit is contained in:
Malloc of Kuzkycyziklistan 2017-04-18 16:00:41 -05:00
parent 7105166b5c
commit 8e80d5a8a4
5 changed files with 18 additions and 11 deletions

View file

@ -1,15 +1,18 @@
var Entrypoint = (function () {
function Entrypoint() {
}
Entrypoint.Main = function () {
};
return Entrypoint;
}());
var FileCache = (function () {
function FileCache() {
}
FileCache.Initialize = function () {
var request = window.indexedDB.open("fileCache", 1);
};
return FileCache;
}());
FileCache.dbHandle = null;
/// <reference path="FileCache.ts" />
var Entrypoint = (function () {
function Entrypoint() {
}
Entrypoint.Main = function () {
FileCache.Initialize();
};
return Entrypoint;
}());

View file

@ -1,5 +1,7 @@
/// <reference path="FileCache.ts" />
class Entrypoint {
static Main(): void {
FileCache.Initialize();
}
}

View file

@ -2,6 +2,6 @@ class FileCache {
static dbHandle: IDBDatabase = null;
static Initialize(): void {
var request = window.indexedDB.open("fileCache", 1);
}
}

View file

@ -1,5 +1,7 @@
body {
background: #000;
margin: 0;
padding: 0;
}
#cs {

View file

@ -13,11 +13,11 @@ namespace CircleScape {
}
protected override void OnOpen() {
if()
}
protected override void OnMessage(MessageEventArgs e) {
Sess
}
protected override void OnClose(CloseEventArgs e) {