...
Activities
  • Jana Pena is now Follwing you 2 min ago
  • Helen likes your photo 23 min ago
  • Colin send email 34 min ago
  • Starbucks invites you 44 min ago
  • Peter added new video 56 min ago
Contacts
  • user
    Katerina Dankovich
    Online
  • user
    Helen Doe
    Away
  • user
    Phil Simons
    Online
  • user
    Peter Johnson
    Offline
  • user
    Kate Owl
    Busy
Alerts

Sets alerts to get notified when changes occur to get new alerming items

Notifications

You will receive notification email for any notifications if you set notification

Messages

You will receive notification on email after setting messages notifications

Warnings

You will get warnning only some specific setttings or alert system

Sidebar

You can hide/show use with sidebar collapsw settings

Idle Timer

Idle plugin provides you a way to monitor user activity with a page.Idle is defined by not moving the mouse, scrolling the mouse wheel and using the keyboard.

Please do not move the mouse for 5 seconds

There are two ways to instantiate. Either statically, or on an element. Element bound timers will only watch for events inside of them. You may just want page-level activity, in which case you may set up your timers on document, document.documentElement, and document.body. Instantiate returns jQuery for chaining.

$(function()
                // Set idle time
                $( document ).idleTimer( 5000 );
            });

            $(function()
                $( document ).on( "idle.idleTimer", function(event, elem, obj)
                    // function you want to fire when the user goes idle
                });

                $( document ).on( "active.idleTimer", function(event, elem, obj, triggerevent)
                    // function you want to fire when the user becomes active again
                });

            });