ven_live_connection_status_box.js 540 B

123456789101112131415161718192021
  1. /* * * * * * * * * * * * * * * * * * * * * * */
  2. /* * * Provision View Status Block */
  3. /* * * * * * * * * * * * * * * * * * * * * * */
  4. jQuery(document).ready(function($)
  5. {
  6. setInterval(function() {
  7. var venID = $('.connection-status .status-indicator-block').attr('id');
  8. $.ajax({
  9. method: "GET",
  10. url: "/vens/" + venID + "/status_query",
  11. dataType: "html",
  12. success: function(data) {
  13. $('.list-actions').html(data);
  14. }
  15. });
  16. }, 10 * 1000);
  17. });