|
|
@ -37,7 +37,11 @@ |
|
|
</style> |
|
|
</style> |
|
|
<script type="text/javascript"> |
|
|
<script type="text/javascript"> |
|
|
$().ready(function() { |
|
|
$().ready(function() { |
|
|
$.get("/info", function(data) { |
|
|
$.ajax("/info", { |
|
|
|
|
|
headers: { |
|
|
|
|
|
'x-random': + new Date() // timestamp |
|
|
|
|
|
} |
|
|
|
|
|
}).done(function(data) { |
|
|
if (data.podName) { |
|
|
if (data.podName) { |
|
|
$("#pod-name").text(data.podName); |
|
|
$("#pod-name").text(data.podName); |
|
|
} |
|
|
} |
|
|
|