-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #664 from NebraLtd/add_wingbits_integration
Add TAR1090 and Graphs1090 Frames
- Loading branch information
Showing
4 changed files
with
90 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{% extends 'template_hyper.html' %} | ||
|
||
{% block title %}Wingbits - GRAPHS1090{% endblock %} | ||
|
||
{% block body %} | ||
<style> | ||
.content-page { | ||
position: relative; | ||
margin-left: var(--ct-leftbar-width); | ||
min-height: calc(100vh - var(--ct-topbar-height) - 2px); | ||
padding: 0 0 0; | ||
-webkit-transition: all .25s ease-in-out; | ||
transition: all .25s ease-in-out; | ||
} | ||
footer { | ||
bottom: -52px !important; | ||
} | ||
</style> | ||
<iframe title="Graphs1090" id='frmWingbits' frameborder="0" style="overflow: hidden; height: 100vh; width: 100%;">Loading...</iframe> | ||
<script> | ||
var url = 'http://' + window.location.href.split('/')[2] + ':8081/graphs1090/?ts={{ now }}'; | ||
document.getElementById('frmWingbits').src = url; | ||
</script> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{% extends 'template_hyper.html' %} | ||
|
||
{% block title %}Wingbits - TAR1090{% endblock %} | ||
|
||
{% block body %} | ||
<style> | ||
.content-page { | ||
position: relative; | ||
margin-left: var(--ct-leftbar-width); | ||
min-height: calc(100vh - var(--ct-topbar-height) - 2px); | ||
padding: 0 0 0; | ||
-webkit-transition: all .25s ease-in-out; | ||
transition: all .25s ease-in-out; | ||
} | ||
footer { | ||
bottom: -52px !important; | ||
} | ||
</style> | ||
<iframe title="TAR1090" id='frmWingbits' frameborder="0" style="overflow: hidden; height: 100vh; width: 100%;">Loading...</iframe> | ||
<script> | ||
var url = 'http://' + window.location.href.split('/')[2] + ':8081/tar1090/?ts={{ now }}'; | ||
document.getElementById('frmWingbits').src = url; | ||
</script> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters