-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (42 loc) · 1.81 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
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Shortcut Menu Plug-in for LabVIEW IDE</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<link href="./assets/base.css" media="screen" rel="stylesheet" type="text/css">
<link href="./assets/styles.css" media="screen" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="./assets/favicon.ico">
<script src="https://kit.fontawesome.com/f98f757188.js" crossorigin="anonymous"></script>
<script>
function setIframeSource() {
// behavior of myIframe
var theSelect = document.getElementById('location');
var theIframe = document.getElementById('myIframe');
var theUrl;
theUrl = theSelect.options[theSelect.selectedIndex].value;
theIframe.src = theUrl;
}
</script>
</head>
<body>
<form id="form1" method="post" align="right">
<label><u>S</u>elect language</label>
<select id="location" onchange="setIframeSource()" accesskey="s" title="Alt+S">
<option value="doc/en/lv_shortcut_menu.html">English</option>
<option value="doc/fr/lv_shortcut_menu.html">Français</option>
</select>
</form>
<iframe id="myIframe" src="./doc/en/lv_shortcut_menu.html" frameborder="0" marginwidth="0" marginheight="0" width="100%" height="5850" scrolling="yes"></iframe>
<br><br><hr/>
<footer class="footer">
<nav class="footer-navigation">
<i class="icon-square-footer"></i>
<ul class="footer-navigation-list">
<li class="footer-navigation-item"><a href="https://benjaminrlabviewextensions.github.io/LVMenu_Demo/">Home</a></li>
</ul>
<p class="copyright">© 2022 BenjaminR, maintained by <a href="https://github.com/Benji667">BenjaminR</a>.</p>
</nav>
</footer>
</body>
</html>