node-alljoyn
Version:
Access Alljoyn service functions
40 lines (37 loc) • 1.8 kB
HTML
<!--
Copyright (c) 2011, AllSeen Alliance. All rights reserved.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-->
<html>
<meta name="HandheldFriendly" content="True" />
<meta name='viewport' content='width=device-width; initial-scale=1.0; maximum-scale=1.0;' />
<head>
<title>Simple Client</title>
<link href="css/style.css" rel="stylesheet" type="text/css"></link>
</head>
<body>
<form name="message">
<input name="text" placeholder="Enter message here" onkeypress="return onKeyPress(event);"></input>
</form>
<ol id="log">
</ol>
<!--
alljoyn_init.js must be included before any other AllJoyn access. This exposes the binding
through the global org.alljoyn.bus object.
-->
<script type="text/javascript" src="alljoyn_init.js"></script>
<script type="text/javascript" src="js/alljoyn.js"></script>
<script type="text/javascript" src="js/simple.js"></script>
<script type="text/javascript" src="js/client.js"></script>
</body>
</html>