-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpc-demo.html
26 lines (26 loc) · 983 Bytes
/
rpc-demo.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
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>JSON-RPC Demo for JQuery Terminal Emulator</title>
<meta name="author" content="Jakub Jankiewicz - jcubic@onet.pl"/>
<meta name="Description" content="Demonstration for JQuery Terminal Emulator using call automaticly JSON-RPC service (in php) with authentication."/>
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/jquery.mousewheel-min.js"></script>
<script src="js/jquery.terminal-min.js"></script>
<link href="css/jquery.terminal.css" rel="stylesheet"/>
<script>
jQuery(document).ready(function($) {
$('body').terminal("json-rpc-service-demo.php", {
login: true,
greetings: 'Welcome',
onBlur: function() {
// the height of the body is only 2 lines initialy
return false;
}
});
});
</script>
</head>
<body>
</body>