overte/scripts/system/html/users.html
2017-01-18 18:03:16 -08:00

36 lines
No EOL
1.1 KiB
HTML

<!--
// users.html
//
// Created by Faye Li on 18 Jan 2017
// Copyright 2017 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
-->
<html>
<head>
</head>
<body>
<h1> Hello Users </h1>
<button type="button" onclick="pollUsers()">Poll Users</button>
<div id="dev-div"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
var METAVERSE_API_URL = "https://metaverse.highfidelity.com/api/v1/users?status=online";
function pollUsers() {
$("#dev-div").html("polling users");
$.ajax({
url: METAVERSE_API_URL,
success: function(response) {
$("#dev-div").html(response);
}
});
}
$(document).ready(function() {
$("#dev-div").html("ready");
});
</script>
</body>
</html>