mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-20 10:09:09 +00:00
37 lines
601 B
PHP
37 lines
601 B
PHP
<?php
|
|
|
|
JavascriptFile('/yaamp/ui/js/auto_refresh.js');
|
|
|
|
echo "<div id='index_results'>";
|
|
echo "<br><br><br><br><br><br><br><br><br><br>";
|
|
echo "</div>";
|
|
|
|
echo "<br><br><br><br><br><br><br><br><br><br>";
|
|
echo "<br><br><br><br><br><br><br><br><br><br>";
|
|
echo "<br><br><br><br><br><br><br><br><br><br>";
|
|
echo "<br><br><br><br><br><br><br><br><br><br>";
|
|
|
|
echo <<<END
|
|
|
|
<script>
|
|
|
|
function page_refresh()
|
|
{
|
|
index_refresh();
|
|
}
|
|
|
|
function index_ready(data)
|
|
{
|
|
$('#index_results').html(data);
|
|
}
|
|
|
|
function index_refresh()
|
|
{
|
|
var url = "/nicehash/index_results";
|
|
$.get(url, '', index_ready);
|
|
}
|
|
|
|
</script>
|
|
|
|
END;
|
|
|