blob: 38987676d6cf47cb74dc154d95f2ff7c70184907 [file] [log] [blame]
Akron5e1252e2022-12-19 17:57:56 +01001<!DOCTYPE html>
2<html>
3 <head>
Akron74dbfe02022-12-20 13:41:59 +01004 <title>External Sale</title>
Akron5e1252e2022-12-19 17:57:56 +01005 <script data-server="{{ .korapServer }}" src="client.js"></script>
Akron74dbfe02022-12-20 13:41:59 +01006 <script><!--
7"use strict";
8
9function pluginit(P) {
10
11 // Request metadata from the embedding match
12 P.requestMsg(
13 {
14 'action':'get',
15 'key':'textSigle'
16 }, function (d) {
17 var textSigle = d.value.value;
18 var xhttp = new XMLHttpRequest();
19 xhttp.onload = function() {
20 document.getElementById("buy").innerHTML = this.responseText;
21 P.resize();
22 }
23 xhttp.open("GET", textSigle, true);
24 xhttp.send();
25 }
26 );
27
28 if (window.dynCall) {
29 window.dynCall(P)
30 };
31
32 // Set plugin object globally
33 window.Plugin = P;
34
35};
36-->
37 </script>
Akron5e1252e2022-12-19 17:57:56 +010038 </head>
39 <body>
Akron74dbfe02022-12-20 13:41:59 +010040 <p id="buy">...</p>
Akron5e1252e2022-12-19 17:57:56 +010041 </body>
42</html>