Subversion Repositories qbpwcf-lib(archive)

Rev

Rev 915 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 liveuser 1
/**
2
 * Expose the Event class.
3
 */
4
module.exports = _Event;
5
 
6
 
7
function _Event(type) {
8
	this.type = type;
9
	this.isTrusted = false;
10
}