Sha256: 070f2747b2a2c5e02eb865fb3a31a6586d502459b041f8bf16e3a3964d711aec

Contents?: true

Size: 390 Bytes

Versions: 8

Compression:

Stored size: 390 Bytes

Contents

/*
The touch component handles touch events and dispatches signals.
*/
/*re.c('touch')
.statics({
	
	touchEvent:function(e){
		
	},
	
	active:false,
	
	i:function(){
		if(!this.active){
			this.active = true;
			
			re.listener('touchstart', this.touchEvent, false);
			re.listener('touchmove', this.touchEvent, false);
			re.listener('touchend', this.touchEvent, false);
			
		}
	}
	
});*/

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
entityjs-0.4.4 src/input/touch.js
entityjs-0.4.3 src/input/touch.js
entityjs-0.4.2 src/input/touch.js
entityjs-0.4.1 src/input/touch.js
entityjs-0.4.0 src/input/touch.js
entityjs-0.3.2 src/input/touch.js
entityjs-0.3.1 src/input/touch.js
entityjs-0.3.0 src/input/touch.js