mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-27 07:29:40 +00:00
Change timers for ajax
This commit is contained in:
@@ -1000,7 +1000,17 @@
|
||||
netChart[data.netdata[j].dev].update();
|
||||
}
|
||||
});
|
||||
}, 6000);
|
||||
}, 10000);
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
window.setInterval(function get_status() {
|
||||
var status = {{ status }};
|
||||
$.getJSON('{% url 'inst_status' compute_id vname %}', function (data) {
|
||||
if (data['status'] != status) {
|
||||
window.location.reload()
|
||||
}
|
||||
})
|
||||
}, 2000);
|
||||
</script>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user