htd-lync
Version:
This library is meant to be used to interact with an HTD Lync 12
59 lines (46 loc) • 1.47 kB
HTML
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="cordova.js"></script>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/socket.io.js"></script>
<script src="js/connect.js"></script>
</head>
<script type="text/javascript">
document.addEventListener('deviceready', function onDeviceReady() {
console.log(chrome);
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false);
cordova.plugins.Keyboard.disableScroll(true);
gettingInfoFromBeacon();
}, false);
</script>
<body class="platform-android platform-cordova platform-webview platform-ios platform-cordova platform-webview">
<div class="container">
<div class="phone">
<div class="phone-icon">
</div>
</div>
<div class="app-name">
<h2>Lync</h2>
<p>whole-house audio control</p>
</div>
<!-- <input id="ipAddress" placeholder="IP Address"></input> -->
<div class="buttons">
<div class="connect beacon" id="manuallyConnect" onClick="connectManually();">Manually Connect</div>
</div>
<div class="loginErr">
<span id="loginError"></span>
</div>
<div id="storedSystems">
Stored Systems
<div id="storedSystemList"></div>
<div class="button-item beacon" id="removeSystem" onClick="removeSystem();" style="display:none">Remove A System</div>
</div>
<div id="beaconData">
Scanning for Systems...
</div>
</div>
</body>
</html>