mirror of
https://github.com/zero-peak/ZeroOmega.git
synced 2025-01-22 15:08:12 -05:00
23 lines
475 B
HTML
23 lines
475 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
<script src="./lib/iframeResizer/iframeResizer.min.js"></script>
|
|
<style>
|
|
html,body{
|
|
margin: 0;
|
|
padding:0;
|
|
}
|
|
iframe {
|
|
min-width: 300px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<iframe id="myIframe" src="./popup/index.html" frameborder="0"></iframe>
|
|
<script src="./lib/script.js/script.min.js"></script>
|
|
<script src="./popup-iframe.js"></script>
|
|
</body>
|
|
</html>
|