-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_app.html
More file actions
33 lines (30 loc) · 860 Bytes
/
test_app.html
File metadata and controls
33 lines (30 loc) · 860 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TEST FAPI</title>
<script content="text/javascript" src="http://vdevlnx193.mail.msk:8090/js/fapi5.js" defer="defer"></script>
<script>
function init() {
var rParams = FAPI.Util.getRequestParameters();
console.log(rParams);
FAPI.init(rParams["api_server"], rParams["apiconnection"],
function() {
console.log("FAPI is READY");
console.log(FAPI.Util.getRequestParameters()["logged_user_id"]);
},
function(error) {
console.log(error);
}
);
};
</script>
</head>
<body onload="init()">
<p>
<span style="font-size: 70px">
TEST FAPI
</span>
</p>
</body>
</html>