mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-27 13:08:39 +08:00
54 lines
1.6 KiB
HTML
54 lines
1.6 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<title>My Apps</title>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta name="description" content="Back Up" />
|
|
|
|
<script src="../base1/cockpit.js"></script>
|
|
<script src="../manifests.js"></script>
|
|
<script src="../*/po.js"></script>
|
|
<style type="text/css">
|
|
.myApps {
|
|
overflow: hidden;
|
|
/* 16:9 aspect ratio */
|
|
padding-top: 56.25%;
|
|
position: relative;
|
|
}
|
|
|
|
.myApps iframe {
|
|
border: 0;
|
|
height: 100%;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<script>
|
|
// var nav = parent.document.querySelector('nav[aria-label="Global"]');
|
|
// var sections = nav.getElementsByTagName("section");
|
|
// sections[0].parentNode.insertBefore(sections[1], sections[0]);
|
|
|
|
// var myapps = window;
|
|
// myapps.location.href = "../appstore/index.html#/myapps";
|
|
function myFunction() {
|
|
console.log(window.location.href);
|
|
console.log(cockpit.location.href);
|
|
let location = cockpit.location;
|
|
//location.go("/system/terminal")
|
|
cockpit.jump("/system/terminal");
|
|
console.log(cockpit.location.href);
|
|
console.log(window.location.href);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<button onclick="myFunction()">跳转</button>
|
|
</body>
|
|
|
|
</html> |