Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 768 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 768 Bytes

Idle Timer for ExtJs 4

Inspired by Idle Timer for YUI by Nicolas Zakas.

Installation

Copy source files to your project, use Ext.require() to use it in your application.

Usage

Create Utils.IdleTimer object and use start() function to start timer. Assign idle and/or active listeners to perform actions when timer went into idle or active state.

var timer = Ext.create('Utils.IdleTimer', {
    timeout: 10000,
    listeners: {
        idle: function(){
            console.log('Application went into idle state');
        },
        active: function(){
            console.log('Application went into active state');
        }
    }
});

timer.start();