-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (36 loc) · 1.09 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>View</title>
<script src="components/openfin-link.js"></script>
<script type="module" src="js/index.js"></script>
<link rel="stylesheet" href="style/main.css" />
</head>
<body style="background-color: white;">
<h1>
This is a basic example of an OpenFin Platform App setup with custom
components being added to the tab header.
</h1>
<p>
You are running OpenFin Runtime version:
<span id="openfin-version"></span>
</p>
<p>
<openfin-link
show-in-fin="false"
href="fins://./config/preload.platform.fin.json"
>Custom Component in tab header with preload script.</openfin-link
>
</p>
<p>
<openfin-link
show-in-fin="false"
href="fins://./config/app.platform.fin.json"
>Custom Component in tab header with custom page.</openfin-link
>
</p>
</body>
</html>