Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seanoshea/dojo-idle-listener
dojo implementation of an idle listener
https://github.com/seanoshea/dojo-idle-listener
Last synced: 22 days ago
JSON representation
dojo implementation of an idle listener
- Host: GitHub
- URL: https://github.com/seanoshea/dojo-idle-listener
- Owner: seanoshea
- Created: 2010-01-17T23:15:29.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-01-18T01:53:24.000Z (almost 15 years ago)
- Last Synced: 2024-10-25T08:35:17.244Z (2 months ago)
- Homepage:
- Size: 70.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
var idleListener = new IdleListener();
idleListener.start(30000);
dojo.subscribe("idle", function() {
// on idle event handler
});
dojo.subscribe("active", function() {
// on active event handler
});