actions.php 364 B

1234567891011121314151617
  1. <?
  2. ?>
  3. <script>
  4. ifvisible.setIdleDuration(30);
  5. GetActiveUser();
  6. //setInterval( GetActiveUser, 1000*60 );
  7. ifvisible.onEvery(60,GetActiveUser);
  8. function GetActiveUser(){
  9. if( !ifvisible.now() ) return;
  10. $.getJSON( "/manager/spy/authorping",
  11. function(data) {
  12. $('#user_active').html(data.html)
  13. $('#user_active_count').html(data.count);
  14. }
  15. )
  16. }
  17. </script>