mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-06 10:39:45 +00:00
44 lines
679 B
PHP
44 lines
679 B
PHP
<?php
|
|
echo getAdminSideBarLinks();
|
|
?>
|
|
|
|
<div id='main_results'></div>
|
|
|
|
<br><br><br><br><br><br><br><br><br><br>
|
|
<br><br><br><br><br><br><br><br><br><br>
|
|
<br><br><br><br><br><br><br><br><br><br>
|
|
<br><br><br><br><br><br><br><br><br><br>
|
|
|
|
<script>
|
|
|
|
$(function()
|
|
{
|
|
main_refresh();
|
|
});
|
|
|
|
var main_delay=60000;
|
|
var main_timeout;
|
|
|
|
function main_ready(data)
|
|
{
|
|
$('#main_results').html(data);
|
|
main_timeout = setTimeout(main_refresh, main_delay);
|
|
}
|
|
|
|
function main_error()
|
|
{
|
|
main_timeout = setTimeout(main_refresh, main_delay*2);
|
|
}
|
|
|
|
function main_refresh()
|
|
{
|
|
var url = "/site/exchange_results";
|
|
|
|
clearTimeout(main_timeout);
|
|
$.get(url, '', main_ready).error(main_error);
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|