Permalink
This commit does not belong to any branch on this respository, and may belong to a fork outside of the repository.
Showing
with
796 additions
and 0 deletions.
- BIN Fodder.zip
- +41 −0 appmanifest.json
- +1 −0 data.json
- BIN icons/icon-128.png
- BIN icons/icon-16.png
- BIN icons/icon-256.png
- BIN icons/icon-32.png
- BIN icons/icon-512.png
- BIN icons/icon-64.png
- BIN icons/loading-logo.png
- BIN images/past-sheet0.png
- BIN images/shared-0-sheet0.png
- BIN images/shared-0-sheet1.png
- BIN images/shared-0-sheet2.png
- BIN images/shared-0-sheet3.png
- BIN images/shared-0-sheet4.png
- +32 −0 index.html
- +1 −0 offline.json
- +664 −0 scripts/c3runtime.js
- +1 −0 scripts/dispatchWorker.js
- +1 −0 scripts/jobWorker.js
- +11 −0 scripts/main.js
- +1 −0 scripts/offlineClient.js
- +1 −0 scripts/register-sw.js
- +1 −0 scripts/supportCheck.js
- +1 −0 scripts/workerMain.js
- +39 −0 style.css
- +1 −0 sw.js
Binary file not shown.
@@ -0,0 +1,41 @@ | ||
{ | ||
"name": "Fodder", | ||
"short_name": "Fodder", | ||
"description": "", | ||
"start_url": "index.html", | ||
"display": "fullscreen", | ||
"orientation": "landscape", | ||
"background_color": "#ffffff", | ||
"icons": [ | ||
{ | ||
"src": "icons/icon-16.png", | ||
"sizes": "16x16", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "icons/icon-32.png", | ||
"sizes": "32x32", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "icons/icon-64.png", | ||
"sizes": "64x64", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "icons/icon-128.png", | ||
"sizes": "128x128", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "icons/icon-256.png", | ||
"sizes": "256x256", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "icons/icon-512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
] | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Fodder</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"> | ||
|
||
<link rel="manifest" href="appmanifest.json"> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<link rel="apple-touch-icon" sizes="128x128" href="icons/icon-128.png"> | ||
<link rel="apple-touch-icon" sizes="256x256" href="icons/icon-256.png"> | ||
<link rel="apple-touch-icon" sizes="512x512" href="icons/icon-512.png"> | ||
<link rel="icon" type="image/png" href="icons/icon-512.png"> | ||
|
||
<link rel="stylesheet" href="style.css"> | ||
|
||
</head> | ||
<body> | ||
<div id="fb-root"></div> | ||
|
||
<noscript> | ||
<div id="notSupportedWrap"> | ||
<h2 id="notSupportedTitle">This content requires JavaScript</h2> | ||
<p id="notSupportedMessage">JavaScript appears to be disabled. Please enable it to view this content.</p> | ||
</div> | ||
</noscript> | ||
<script src="scripts/supportCheck.js"></script> | ||
<script src="scripts/offlineClient.js"></script> | ||
<script src="scripts/main.js"></script> | ||
<script src="scripts/register-sw.js"></script> | ||
</body> | ||
</html> |
@@ -0,0 +1 @@ | ||
{"version":1554835957910,"fileList":["scripts/c3runtime.js","data.json","style.css","scripts/offlineClient.js","images/shared-0-sheet0.png","images/shared-0-sheet1.png","images/past-sheet0.png","images/shared-0-sheet3.png","images/shared-0-sheet4.png","images/shared-0-sheet2.png","scripts/main.js","scripts/dispatchWorker.js","scripts/jobWorker.js","scripts/workerMain.js","scripts/supportCheck.js","icons/loading-logo.png","icons/icon-16.png","icons/icon-32.png","icons/icon-64.png","icons/icon-128.png","icons/icon-256.png","icons/icon-512.png","scripts/register-sw.js"]} |
@@ -0,0 +1,39 @@ | ||
html, body { | ||
padding: 0; | ||
margin: 0; | ||
overflow: hidden; | ||
|
||
background: #000000; | ||
color: white; | ||
} | ||
|
||
html, body, canvas { | ||
touch-action: none; | ||
touch-action-delay: none; | ||
} | ||
|
||
#notSupportedWrap { | ||
margin: 2em auto 1em auto; | ||
width: 75%; | ||
max-width: 45em; | ||
border: 2px solid #aaa; | ||
border-radius: 1em; | ||
padding: 2em; | ||
background-color: #f0f0f0; | ||
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; | ||
color: black; | ||
} | ||
|
||
#notSupportedTitle { | ||
font-size: 1.8em; | ||
} | ||
|
||
#notSupportedMessage { | ||
font-size: 1.2em; | ||
} | ||
|
||
#notSupportedMessage em { | ||
color: #888; | ||
} | ||
|
||
|