mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-14 18:48:36 -07:00
Going to have to continue to use the old MAC web-container-based UI on Macs prior to 10.10 even when the new UI comes out, and the new UI is not ready yet anyway, so resurrect this.
This commit is contained in:
parent
19735e7050
commit
df00d3b046
74 changed files with 7397 additions and 0 deletions
58
ext/installfiles/mac/ui/index.html
Normal file
58
ext/installfiles/mac/ui/index.html
Normal file
|
@ -0,0 +1,58 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>ZeroTier One</title>
|
||||
<link rel="stylesheet" href="zerotier.css">
|
||||
<script src="simpleajax.min.js"></script>
|
||||
<!-- <script src="https://fb.me/react-0.13.2.js"></script> -->
|
||||
<script src="react.min.js"></script>
|
||||
<script src="ztui.min.js"></script>
|
||||
</head>
|
||||
<body><div style="width: 100%; height: 100%;" id="main"></div></body>
|
||||
<script src="main.js"></script>
|
||||
<script>
|
||||
/* Windows hacks */
|
||||
function isIE() {
|
||||
var myNav = navigator.userAgent.toLowerCase();
|
||||
return (myNav.indexOf('msie') != -1) ? parseInt(myNav.split('msie')[1]) : false;
|
||||
}
|
||||
var ieVersion = isIE();
|
||||
function resizeMiddleScrollClasses() {
|
||||
var elems = document.getElementsByTagName('*'), i;
|
||||
for (i in elems) {
|
||||
if ((' ' + elems[i].className + ' ').indexOf(' middleScroll ') > -1) {
|
||||
elems[i].style.height = (document.body.clientHeight - (elems[i].parentNode.parentNode.previousElementSibling.clientHeight + elems[i].parentNode.parentNode.nextElementSibling.clientHeight)) + "px";
|
||||
}
|
||||
}
|
||||
}
|
||||
if (ieVersion !== false) {
|
||||
if (ieVersion < 7) {
|
||||
alert("Upgrade Internet Explorer on your system to use this interface. (detected version: " + ieVersion + ")");
|
||||
} else {
|
||||
resizeMiddleScrollClasses();
|
||||
window.onresize = resizeMiddleScrollClasses;
|
||||
}
|
||||
}
|
||||
|
||||
/* MacGap hacks */
|
||||
if (typeof macgap !== 'undefined') {
|
||||
if (macgap.menu) {
|
||||
var tmp = macgap.menu.getItem("Help");
|
||||
if (tmp)
|
||||
tmp.remove();
|
||||
tmp = macgap.menu.getItem("Format");
|
||||
if (tmp)
|
||||
tmp.remove();
|
||||
tmp = macgap.menu.getItem("View");
|
||||
if (tmp)
|
||||
tmp.remove();
|
||||
tmp = macgap.menu.getItem("File");
|
||||
if (tmp)
|
||||
tmp.remove();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue