Electron desktop client added

This commit is contained in:
2018-03-09 16:48:30 -05:00
parent 9533abc20e
commit fc9075c33f
1817 changed files with 250193 additions and 0 deletions

38
Electron Client/node_modules/doc-ready/index.html generated vendored Normal file
View File

@@ -0,0 +1,38 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>docReady</title>
<style>body { font-family: sans-serif; }</style>
</head>
<body>
<h1>docReady</h1>
<script src="bower_components/eventie/eventie.js"></script>
<script src="doc-ready.js"></script>
<script>
( function( window ) {
docReady( function() {
document.body.innerHTML += '\<p>okay ready now\</p>';
});
docReady( function() {
document.body.innerHTML += '\<p>im ready too\</p>';
setTimeout( function() {
docReady( function() {
document.body.innerHTML += '\<p>Already ready, Right? ' + docReady.isReady + '\</p>';
});
}, 1000 );
});
})( this );
</script>
</body>
</html>