remove iframe

This commit is contained in:
Matt Walsh
2020-09-17 14:37:54 -05:00
parent afe5966738
commit 36144f9eb1
20 changed files with 969 additions and 2008 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -21,32 +21,30 @@ const navigation = (() => {
let progress;
const init = async () => {
// set up message receive and dispatch accordingly
window.addEventListener('message', (event) => {
// test for trust
if (!event.isTrusted) return;
// get the data
const data = JSON.parse(event.data);
// nothing to do
};
// dispatch event
if (!data.type) return;
switch (data.type) {
case 'latLon':
getWeather(data.message);
break;
const message = (data) => {
case 'units':
setUnits(data.message);
break;
// dispatch event
if (!data.type) return;
switch (data.type) {
case 'latLon':
getWeather(data.message);
break;
case 'navButton':
handleNavButton(data.message);
break;
case 'units':
setUnits(data.message);
break;
case 'navButton':
handleNavButton(data.message);
break;
default:
console.error(`Unknown event ${data.type}`);
}
default:
console.error(`Unknown event ${data.type}`);
}
}, false);
};
const postMessage = (type, message = {}) => {
@@ -256,6 +254,7 @@ const navigation = (() => {
return {
init,
message,
updateStatus,
units,
isPlaying,

View File

@@ -166,14 +166,6 @@ input, button
position: absolute;
}
#iframeTwc
{
width: 640px;
height: 480px;
overflow: hidden;
border: 0;
}
.HideCursor
{
cursor: none !important;
@@ -183,3 +175,90 @@ input, button
{
width: 475px;
}
@font-face
{
font-family: "Star4000";
src: url('../fonts/Star4000.woff') format('woff');
}
@font-face
{
font-family: "Star 4 Radar";
src: url('../fonts/Star 4 Radar.woff') format('woff');
}
@font-face
{
font-family: 'Star4000 Extended';
src: url('../fonts/Star4000 Extended.woff') format('woff');
}
@font-face
{
font-family: 'Star4000LCN';
src: url('../fonts/Star4000LCN.woff') format('woff');
}
@font-face
{
font-family: 'Star4000 Large Compressed';
src: url('../fonts/Star4000 Large Compressed.woff') format('woff');
}
@font-face
{
font-family: 'Star4000 Large';
src: url('../fonts/Star4000 Large.woff') format('woff');
}
@font-face
{
font-family: 'Star4000 Small';
src: url('../fonts/Star4000 Small.woff') format('woff');
}
#display
{
font-family: "Star4000";
margin: 0 0 0 0;
overflow: hidden;
width: 640px;
height: 480px;
}
jsgif
{
display: none;
}
#Star4000
{
font-family: 'Star4000';
}
#Star4000Extended
{
font-family: 'Star4000 Extended';
}
#Star4000LargeCompressed
{
font-family: 'Star4000 Large Compressed';
}
#Star4000Large
{
font-family: 'Star4000 Large';
}
#Star4000LargeCompressedNumbers
{
font-family: 'Star4000LCN';
}
#Star4000Small
{
font-family: 'Star4000 Small';
}
#Star4Radar
{
font-family: 'Star 4 Radar';
}
#container {
position: absolute;
}
#container canvas {
position: absolute;
}

View File

@@ -1,102 +1 @@
@font-face
{
font-family: "Star4000";
src: url('../fonts/Star4000.woff') format('woff');
/*font-weight: bold;
font-style: italic;*/
}
@font-face
{
font-family: "Star 4 Radar";
src: url('../fonts/Star 4 Radar.woff') format('woff');
}
@font-face
{
font-family: 'Star4000 Extended';
src: url('../fonts/Star4000 Extended.woff') format('woff');
}
@font-face
{
/*font-family: 'Star4000 Large Compressed Numbers';*/
font-family: 'Star4000LCN';
/*src: url('../fonts/Star4000 Large Compressed Numbers.woff') format('woff');*/
src: url('../fonts/Star4000LCN.woff') format('woff');
}
@font-face
{
font-family: 'Star4000 Large Compressed';
src: url('../fonts/Star4000 Large Compressed.woff') format('woff');
}
@font-face
{
font-family: 'Star4000 Large';
src: url('../fonts/Star4000 Large.woff') format('woff');
}
@font-face
{
font-family: 'Star4000 Small';
src: url('../fonts/Star4000 Small.woff') format('woff');
}
body
{
font-family: "Star4000";
margin: 0 0 0 0;
overflow: hidden;
}
input
{
font-family: "Star4000";
}
jsgif
{
display: none;
}
.fontPreload {
visibility: hidden;
position: absolute;
}
#Star4000
{
font-family: 'Star4000';
}
#Star4000Extended
{
font-family: 'Star4000 Extended';
}
#Star4000LargeCompressed
{
font-family: 'Star4000 Large Compressed';
}
#Star4000Large
{
font-family: 'Star4000 Large';
}
#Star4000LargeCompressedNumbers
{
font-family: 'Star4000LCN';
}
#Star4000Small
{
font-family: 'Star4000 Small';
}
#Star4Radar
{
font-family: 'Star 4 Radar';
}
.HideCursor
{
cursor: none !important;
}
#container {
position: absolute;
}
#container canvas {
position: absolute;
}