summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/spa/index.html
blob: 0d2cf0e0b83053076f551a4955b42b59fbe76b52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<html>
  <head>
    <meta charset="utf-8" />
    <link rel="manifest" href="./manifest.json" />
    <style>
      .overlay {
        position: absolute;
        top: 0px;
        display: none;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
color:white;
justify-content: center;
      }
      .overlay > iframe {
        margin: auto;
      }
    </style>
  </head>
  <body>
    <script>
      function openPopup() {
        document.getElementById("popup-overlay").style.display = "flex"
        window.frames["popup"].location = "popup.html";
        window.frames["popup"]
      }
      function closePopup() {
        document.getElementById("popup-overlay").style.display = "none"
      }
      function redirectWallet(url) {
        window.frames["wallet"].location = url
      }
      function openWallet() {
        redirectWallet("wallet.html")
      }
      function closeWallet() {
        redirectWallet("about:blank")
      }
      function openPage() {
        window.frames["other"].location =
          document.getElementById("page-url").value;
      }
    </script>
    <button value="asd" onclick="openPopup()">open popup</button>
    <button value="asd" onclick="closeWallet();openWallet()">
      reload wallet page
    </button>
<br />
    <iframe
      id="wallet-window"
      name="wallet"
      src="wallet.html"
      width="1000"
      height="100%"
    >
     </iframe>
    <!-- <input id="page-url" type="text" />
    <button onclick="openPage()">open</button> -->
    <!-- <a
      href='javascript:void(window.frames["other"].location = "http://bank.taler:5882")'
      >open local bank</a
    >
    <hr />
    <iframe
      id="other-window"
      name="other"
      src="http://bank.taler:5882"
      width="100%"
      height="325"
    >
    </iframe> -->
    <hr />
    <div class="overlay" id="popup-overlay">
      <iframe
      id="popup-window"
      name="popup"
      src="about:blank"
      width="500"
      height="325"
      >
      </iframe>
    </div>
    <!-- <hr />
    <iframe src="tests.html" name="wallet" width="800" height="100%"> </iframe> -->
    <!-- <hr />
    <iframe src="stories.html" name="wallet" width="800" height="100%"> -->
    <script type="module" src="background.dev.js"></script>
  </body>
</html>