Welcome to mirror list, hosted at ThFree Co, Russian Federation.

embed-file.html « resources « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83bb4284c2d4373736a218446ba145bc6bf61fce (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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Test Embed</title>
    <style>
        html, body {
            height: calc(100%);
        }

        iframe {
            width: 100%;
            height: calc(100%);
        }
    </style>
</head>
<body>
    <script>
        window.onload = function () {
            try {
                var url = decodeURIComponent(window.location.hash.substring(1));
                var iframe = document.createElement('iframe');
                iframe.name = 'embed';
                iframe.sandbox = "allow-forms allow-popups allow-pointer-lock allow-same-origin allow-scripts allow-top-navigation";
                iframe.src = url;
                document.body.appendChild(iframe);
            } catch (e) {
                console.log(e.stack || e.message);
            }
        };
    </script>
    <h1>Embedded Matomo</h1>
</body>
</html>