mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-06-17 14:45:06 +03:00
IE11 support, markup fixes, caching fixes
This commit is contained in:
parent
1e7d51bac6
commit
3999a62f54
8 changed files with 1278 additions and 25 deletions
|
@ -98,6 +98,18 @@ else
|
|||
PKGDISPLAYNAME="RiV-mesh Network"
|
||||
fi
|
||||
|
||||
cat > mesh-ui-ie.js << EOF
|
||||
var ie = new ActiveXObject("InternetExplorer.Application");
|
||||
ie.AddressBar = false;
|
||||
ie.MenuBar = false;
|
||||
ie.ToolBar = false;
|
||||
ie.height = 960
|
||||
ie.width = 706
|
||||
ie.resizable = false
|
||||
ie.Visible = true;
|
||||
ie.Navigate("http://localhost:19019");
|
||||
EOF
|
||||
|
||||
# Generate the wix.xml file
|
||||
cat > wix.xml << EOF
|
||||
<?xml version="1.0" encoding="windows-1252"?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue