summaryrefslogtreecommitdiffstats
path: root/src/html/sysInfoTest.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/html/sysInfoTest.html')
-rw-r--r--src/html/sysInfoTest.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/html/sysInfoTest.html b/src/html/sysInfoTest.html
new file mode 100644
index 0000000..ab4247c
--- /dev/null
+++ b/src/html/sysInfoTest.html
@@ -0,0 +1,21 @@
+
+
+<html>
+<head>
+<script type="text/javascript">
+function getInfo(){
+ var tmp = jsObject.getSysInfo(document.form.info.value);
+ document.form.returnFromQT.value = tmp;
+}
+</script>
+</head>
+<body>
+<form name="form">
+ <p>
+ <input type="text" name="info">
+ <input type="button" name="toQT" value="Request info"
+ onclick="getInfo()">
+ <input type="text" name="returnFromQT">
+ </p>
+</body>
+</html>